File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -569,6 +569,7 @@ func TestAPI(t *testing.T) {
569
569
spellOpt bool
570
570
listOpt bool
571
571
signcolumnOpt string
572
+ colorcolumnOpt string
572
573
)
573
574
batch .WindowOption (w , "number" , & numberOpt )
574
575
batch .WindowOption (w , "relativenumber" , & relativenumberOpt )
@@ -577,10 +578,11 @@ func TestAPI(t *testing.T) {
577
578
batch .WindowOption (w , "spell" , & spellOpt )
578
579
batch .WindowOption (w , "list" , & listOpt )
579
580
batch .WindowOption (w , "signcolumn" , & signcolumnOpt )
581
+ batch .WindowOption (w , "colorcolumn" , & colorcolumnOpt )
580
582
if err := batch .Execute (); err != nil {
581
583
t .Fatal (err )
582
584
}
583
- if numberOpt || relativenumberOpt || cursorlineOpt || cursorcolumnOpt || spellOpt || listOpt || signcolumnOpt != "auto" {
585
+ if numberOpt || relativenumberOpt || cursorlineOpt || cursorcolumnOpt || spellOpt || listOpt || signcolumnOpt != "auto" || colorcolumnOpt != "" {
584
586
t .Fatal ("expected minimal style" )
585
587
}
586
588
})
You can’t perform that action at this time.
0 commit comments