From 1080056bca8569d74ebef455b24c29180c4d5602 Mon Sep 17 00:00:00 2001 From: kazukazuinaina Date: Sat, 11 Jun 2022 02:40:32 +0900 Subject: [PATCH] [delete] single quote --- test/builder.vimspec | 2 +- test/parts.vimspec | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/builder.vimspec b/test/builder.vimspec index 49b90b71..8a1309d9 100644 --- a/test/builder.vimspec +++ b/test/builder.vimspec @@ -17,7 +17,7 @@ Describe builder.vim End - It 'should reuse highlight group if background colors match' + It should reuse highlight group if background colors match highlight Foo1 ctermfg=1 ctermbg=2 highlight Foo2 ctermfg=1 ctermbg=2 call s:builder.add_section('Foo1', 'hello') diff --git a/test/parts.vimspec b/test/parts.vimspec index 01a774c8..75a4dc61 100644 --- a/test/parts.vimspec +++ b/test/parts.vimspec @@ -27,26 +27,26 @@ Describe parts.vim Assert Equals(airline#parts#get('mw').minwidth, 123) End - It 'can define a condition' + It can define a condition call airline#parts#define_condition('part', '1') Assert Equals(airline#parts#get('part').condition, '1') End - It 'can define a accent' + It can define a accent call airline#parts#define_accent('part', 'red') Assert Equals(airline#parts#get('part').accent, 'red') End - It 'value should be blank' + It value should be blank Assert Equals(airline#parts#filetype(), '') End - It 'can overwrIte a filetype' + It can overwrIte a filetype set ft=aaa Assert Equals(airline#parts#filetype(), 'aaa') End - It 'can overwrite a filetype' + It can overwrite a filetype "GItHub actions's vim's column is smaller than 90 set ft=aaaa if &columns >= 90