aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/functional/eval/input_spec.lua12
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>]])