File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -3287,6 +3287,10 @@ func testFloatingWindow(v *Nvim) func(*testing.T) {
3287
3287
if numberOpt || relativenumberOpt || cursorlineOpt || cursorcolumnOpt || spellOpt || listOpt || signcolumnOpt != "auto" || colorcolumnOpt != "" {
3288
3288
t .Fatal ("expected minimal style" )
3289
3289
}
3290
+
3291
+ if err := v .CloseWindow (w , true ); err != nil {
3292
+ t .Fatal (err )
3293
+ }
3290
3294
})
3291
3295
3292
3296
t .Run ("Batch" , func (t * testing.T ) {
@@ -3367,6 +3371,11 @@ func testFloatingWindow(v *Nvim) func(*testing.T) {
3367
3371
if numberOpt || relativenumberOpt || cursorlineOpt || cursorcolumnOpt || spellOpt || listOpt || signcolumnOpt != "auto" || colorcolumnOpt != "" {
3368
3372
t .Fatal ("expected minimal style" )
3369
3373
}
3374
+
3375
+ b .CloseWindow (w , true )
3376
+ if err := b .Execute (); err != nil {
3377
+ t .Fatal (err )
3378
+ }
3370
3379
})
3371
3380
}
3372
3381
}
You can’t perform that action at this time.
0 commit comments