aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorDongdong Zhou <dzhou121@gmail.com>2017-04-28 07:49:45 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2017-10-26 09:35:13 +0200
commitdaec81ab5179c7ce8e3813af556b1e2f05fc59c6 (patch)
tree8eaa16a1efd08a0c827c216b07a5d29b5c256cc6 /test/functional/ui
parent550651c130c014e6c668644273db31dd96be475e (diff)
downloadrneovim-daec81ab5179c7ce8e3813af556b1e2f05fc59c6.tar.gz
rneovim-daec81ab5179c7ce8e3813af556b1e2f05fc59c6.tar.bz2
rneovim-daec81ab5179c7ce8e3813af556b1e2f05fc59c6.zip
ext_cmdline: change the content format
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/cmdline_spec.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua
index 35cacbf4d0..523f7065d4 100644
--- a/test/functional/ui/cmdline_spec.lua
+++ b/test/functional/ui/cmdline_spec.lua
@@ -54,7 +54,7 @@ describe('External command line completion', function()
~ |
|
]], nil, nil, function()
- eq("sign", content)
+ eq({{'Normal', 'sign'}}, content)
eq(4, pos)
end)
@@ -66,7 +66,7 @@ describe('External command line completion', function()
~ |
|
]], nil, nil, function()
- eq("sign", content)
+ eq({{'Normal', 'sign'}}, content)
eq(true, shown)
eq(3, pos)
end)
@@ -79,7 +79,7 @@ describe('External command line completion', function()
~ |
|
]], nil, nil, function()
- eq("sin", content)
+ eq({{'Normal', 'sin'}}, content)
eq(true, shown)
eq(2, pos)
end)
@@ -105,7 +105,7 @@ describe('External command line completion', function()
]], nil, nil, function()
eq(true, shown)
eq("input", prompt)
- eq("default", content)
+ eq({{'Normal', 'default'}}, content)
end)
feed('<cr>')
@@ -117,7 +117,7 @@ describe('External command line completion', function()
~ |
|
]], nil, nil, function()
- eq("3", content)
+ eq({{'Normal', '3'}}, content)
eq("\"", char)
eq(1, shift)
end)