Skip to content

Commit d90af92

Browse files
committed
fix :SKIP reason for latest vim-vspec
1 parent a3c302e commit d90af92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/clang_format_spec.vim

+3-3
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ describe 'g:clang_format#auto_format'
292292
end
293293

294294
it 'formats a current buffer on BufWritePre if the value is 1'
295-
SKIP because somehow BufWritePre event isn't fired
295+
SKIP "because somehow BufWritePre event isn't fired"
296296
let formatted = clang_format#format(1, line('$'))
297297
doautocmd BufWritePre
298298
let auto_formatted = join(getline(1, line('$')), "\n")
@@ -315,7 +315,7 @@ describe 'g:clang_format#auto_format_on_insert_leave'
315315
end
316316

317317
it 'formats a inserted area on InsertLeave if the value is 1'
318-
SKIP because somehow InsertEnter and InsertLeave events aren't fired
318+
SKIP "because somehow InsertEnter and InsertLeave events aren't fired"
319319
execute 10
320320
execute 'normal' "iif(1+2)return 4;\<Esc>"
321321
Expect getline('.') ==# ' if (1 + 2) return 4;'
@@ -337,7 +337,7 @@ describe 'g:clang_format#auto_formatexpr'
337337
end
338338

339339
it 'formats the text object using gq operator'
340-
SKIP because of unknown backslash on formatting too long macros
340+
SKIP "because of unknown backslash on formatting too long macros"
341341
doautocmd Filetype cpp
342342
let expected = ClangFormat(1, line('$'))
343343
normal ggVGgq

0 commit comments

Comments
 (0)