Skip to content

Commit 2600c22

Browse files
committed
fix :SKIP reason message string literals
1 parent 20f7c94 commit 2600c22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/clang_format_spec.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ describe 'g:clang_format#auto_format'
330330
end
331331

332332
it 'formats a current buffer on BufWritePre if the value is 1'
333-
SKIP because somehow BufWritePre event isn't fired
333+
SKIP 'because somehow BufWritePre event isn''t fired'
334334
let formatted = clang_format#format(1, line('$'))
335335
doautocmd BufWritePre
336336
let auto_formatted = join(getline(1, line('$')), "\n")
@@ -353,7 +353,7 @@ describe 'g:clang_format#auto_format_on_insert_leave'
353353
end
354354

355355
it 'formats a inserted area on InsertLeave if the value is 1'
356-
SKIP because somehow InsertEnter and InsertLeave events aren't fired
356+
SKIP 'because somehow InsertEnter and InsertLeave events aren''t fired'
357357
execute 10
358358
execute 'normal' "iif(1+2)return 4;\<Esc>"
359359
Expect getline('.') ==# ' if (1 + 2) return 4;'
@@ -375,7 +375,7 @@ describe 'g:clang_format#auto_formatexpr'
375375
end
376376

377377
it 'formats the text object using gq operator'
378-
SKIP because of unknown backslash on formatting too long macros
378+
SKIP 'because of unknown backslash on formatting too long macros'
379379
doautocmd Filetype cpp
380380
let expected = ClangFormat(1, line('$'))
381381
normal ggVGgq

0 commit comments

Comments
 (0)