diff options
author | ZyX <kp-pav@yandex.ru> | 2017-05-10 23:19:49 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-05-10 23:19:49 +0300 |
commit | 33ca9f711e9a80df8edfc3e5c7519fb5fb7fff2b (patch) | |
tree | 798e58836d42ce357b533732f3f245a03e55060e /test/functional/eval/input_spec.lua | |
parent | 88d4a260e1e798d1ebf2b9720c0f9ca631507b71 (diff) | |
download | rneovim-33ca9f711e9a80df8edfc3e5c7519fb5fb7fff2b.tar.gz rneovim-33ca9f711e9a80df8edfc3e5c7519fb5fb7fff2b.tar.bz2 rneovim-33ca9f711e9a80df8edfc3e5c7519fb5fb7fff2b.zip |
functests: Remove outdated comments
Diffstat (limited to 'test/functional/eval/input_spec.lua')
-rw-r--r-- | test/functional/eval/input_spec.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/eval/input_spec.lua b/test/functional/eval/input_spec.lua index 857bde54d3..a703dbc166 100644 --- a/test/functional/eval/input_spec.lua +++ b/test/functional/eval/input_spec.lua @@ -62,7 +62,6 @@ describe('input()', function() it('works correctly with multiple numeric arguments (many args)', function() command('echohl Test') feed([[:call input(1, 2)<CR>]]) - -- None of the above problems happen when testing manually. screen:expect([[ | {EOB:~ }| @@ -82,7 +81,6 @@ describe('input()', function() it('works correctly with multiple numeric arguments (dict arg)', function() feed([[:echohl Test | echo input({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]]) command('redraw!') -- Without this it shows `12` on the line above. - -- None of the above problems happen when testing manually. screen:expect([[ | {EOB:~ }| @@ -194,7 +192,6 @@ describe('inputdialog()', function() it('works correctly with multiple numeric arguments (many args)', function() command('echohl Test') feed([[:call inputdialog(1, 2)<CR>]]) - -- None of the above problems happen when testing manually. screen:expect([[ | {EOB:~ }| @@ -214,7 +211,6 @@ describe('inputdialog()', function() it('works correctly with multiple numeric arguments (dict arg)', function() feed([[:echohl Test | echo inputdialog({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]]) command('redraw!') -- Without this it shows `12` on the line above. - -- None of the above problems happen when testing manually. screen:expect([[ | {EOB:~ }| |