diff options
Diffstat (limited to 'test/functional/eval/input_spec.lua')
-rw-r--r-- | test/functional/eval/input_spec.lua | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/functional/eval/input_spec.lua b/test/functional/eval/input_spec.lua index 777f49462d..8c65297ac6 100644 --- a/test/functional/eval/input_spec.lua +++ b/test/functional/eval/input_spec.lua @@ -149,14 +149,14 @@ describe('input()', function() {EOB:~ }| {T:Foo>}Bar^ | ]]) - command('redraw!') - screen:expect([[ + command('mode') + screen:expect{grid=[[ | {EOB:~ }| {EOB:~ }| {EOB:~ }| {T:Foo>}Bar^ | - ]]) + ]], reset=true} feed('<BS>') screen:expect([[ | @@ -165,14 +165,14 @@ describe('input()', function() {EOB:~ }| {T:Foo>}Ba^ | ]]) - command('redraw!') - screen:expect([[ + command('mode') + screen:expect{grid=[[ | {EOB:~ }| {EOB:~ }| {EOB:~ }| {T:Foo>}Ba^ | - ]]) + ]], reset=true} end) it('allows omitting everything with dictionary argument', function() command('echohl Test') @@ -347,14 +347,14 @@ describe('inputdialog()', function() {EOB:~ }| {T:Foo>}Bar^ | ]]) - command('redraw!') - screen:expect([[ + command('mode') + screen:expect{grid=[[ | {EOB:~ }| {EOB:~ }| {EOB:~ }| {T:Foo>}Bar^ | - ]]) + ]], reset=true} feed('<BS>') screen:expect([[ | @@ -363,14 +363,14 @@ describe('inputdialog()', function() {EOB:~ }| {T:Foo>}Ba^ | ]]) - command('redraw!') - screen:expect([[ + command('mode') + screen:expect{grid=[[ | {EOB:~ }| {EOB:~ }| {EOB:~ }| {T:Foo>}Ba^ | - ]]) + ]], reset=true} end) it('allows omitting everything with dictionary argument', function() command('echohl Test') |