File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ describe 'g:clang_format#auto_format'
292
292
end
293
293
294
294
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"
296
296
let formatted = clang_format#format (1 , line (' $' ))
297
297
doautocmd BufWritePre
298
298
let auto_formatted = join (getline (1 , line (' $' )), " \n " )
@@ -315,7 +315,7 @@ describe 'g:clang_format#auto_format_on_insert_leave'
315
315
end
316
316
317
317
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"
319
319
execute 10
320
320
execute ' normal' " iif(1+2)return 4;\<Esc> "
321
321
Expect getline (' .' ) == # ' if (1 + 2) return 4;'
@@ -337,7 +337,7 @@ describe 'g:clang_format#auto_formatexpr'
337
337
end
338
338
339
339
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"
341
341
doautocmd Filetype cpp
342
342
let expected = ClangFormat (1 , line (' $' ))
343
343
normal ggVGgq
You can’t perform that action at this time.
0 commit comments