functests: Remove outdated comments

This commit is contained in:
ZyX
2017-05-10 23:19:49 +03:00
parent 88d4a260e1
commit 33ca9f711e

View File

@@ -62,7 +62,6 @@ describe('input()', function()
it('works correctly with multiple numeric arguments (many args)', function() it('works correctly with multiple numeric arguments (many args)', function()
command('echohl Test') command('echohl Test')
feed([[:call input(1, 2)<CR>]]) feed([[:call input(1, 2)<CR>]])
-- None of the above problems happen when testing manually.
screen:expect([[ screen:expect([[
| |
{EOB:~ }| {EOB:~ }|
@@ -82,7 +81,6 @@ describe('input()', function()
it('works correctly with multiple numeric arguments (dict arg)', function() it('works correctly with multiple numeric arguments (dict arg)', function()
feed([[:echohl Test | echo input({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]]) feed([[:echohl Test | echo input({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]])
command('redraw!') -- Without this it shows `12` on the line above. command('redraw!') -- Without this it shows `12` on the line above.
-- None of the above problems happen when testing manually.
screen:expect([[ screen:expect([[
| |
{EOB:~ }| {EOB:~ }|
@@ -194,7 +192,6 @@ describe('inputdialog()', function()
it('works correctly with multiple numeric arguments (many args)', function() it('works correctly with multiple numeric arguments (many args)', function()
command('echohl Test') command('echohl Test')
feed([[:call inputdialog(1, 2)<CR>]]) feed([[:call inputdialog(1, 2)<CR>]])
-- None of the above problems happen when testing manually.
screen:expect([[ screen:expect([[
| |
{EOB:~ }| {EOB:~ }|
@@ -214,7 +211,6 @@ describe('inputdialog()', function()
it('works correctly with multiple numeric arguments (dict arg)', function() it('works correctly with multiple numeric arguments (dict arg)', function()
feed([[:echohl Test | echo inputdialog({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]]) feed([[:echohl Test | echo inputdialog({"prompt": 1, "default": 2, "cancelreturn": 3})<CR>]])
command('redraw!') -- Without this it shows `12` on the line above. command('redraw!') -- Without this it shows `12` on the line above.
-- None of the above problems happen when testing manually.
screen:expect([[ screen:expect([[
| |
{EOB:~ }| {EOB:~ }|