diff options
author | ZyX <kp-pav@yandex.ru> | 2017-05-13 17:04:54 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-05-13 17:04:54 +0300 |
commit | 9906db985d064e870b882f1e36f820dd7ce90215 (patch) | |
tree | a5839d7fc8b8928a0a12dcce4971451152700846 /test/functional/eval/input_spec.lua | |
parent | d66ef56739f9b666e54173d7642c0b351f0c2c12 (diff) | |
download | rneovim-9906db985d064e870b882f1e36f820dd7ce90215.tar.gz rneovim-9906db985d064e870b882f1e36f820dd7ce90215.tar.bz2 rneovim-9906db985d064e870b882f1e36f820dd7ce90215.zip |
functests: Remove “correctly” from non-regression tests
Diffstat (limited to 'test/functional/eval/input_spec.lua')
-rw-r--r-- | test/functional/eval/input_spec.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/eval/input_spec.lua b/test/functional/eval/input_spec.lua index 13e93a4764..2eaadad18f 100644 --- a/test/functional/eval/input_spec.lua +++ b/test/functional/eval/input_spec.lua @@ -31,7 +31,7 @@ before_each(function() end) describe('input()', function() - it('works correctly with multiline prompts', function() + it('works with multiline prompts', function() feed([[:call input("Test\nFoo")<CR>]]) screen:expect([[ {EOB:~ }| @@ -41,7 +41,7 @@ describe('input()', function() Foo^ | ]]) end) - it('works correctly with multiline prompts and :echohl', function() + it('works with multiline prompts and :echohl', function() feed([[:echohl Test | call input("Test\nFoo")<CR>]]) screen:expect([[ {EOB:~ }| @@ -106,7 +106,7 @@ describe('input()', function() {T:3} | ]]) end) - it('works correctly with redraw', function() + it('works with redraw', function() command('echohl Test') meths.set_var('opts', {prompt='Foo>', default='Bar'}) feed([[:echo inputdialog(opts)<CR>]]) @@ -198,7 +198,7 @@ describe('input()', function() end) end) describe('inputdialog()', function() - it('works correctly with multiline prompts', function() + it('works with multiline prompts', function() feed([[:call inputdialog("Test\nFoo")<CR>]]) screen:expect([[ {EOB:~ }| @@ -208,7 +208,7 @@ describe('inputdialog()', function() Foo^ | ]]) end) - it('works correctly with multiline prompts and :echohl', function() + it('works with multiline prompts and :echohl', function() feed([[:echohl Test | call inputdialog("Test\nFoo")<CR>]]) screen:expect([[ {EOB:~ }| @@ -273,7 +273,7 @@ describe('inputdialog()', function() {T:3} | ]]) end) - it('works correctly with redraw', function() + it('works with redraw', function() command('echohl Test') meths.set_var('opts', {prompt='Foo>', default='Bar'}) feed([[:echo input(opts)<CR>]]) |