aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/output_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-08-14 22:57:37 +0200
committerGitHub <noreply@github.com>2016-08-14 22:57:37 +0200
commite57988a9fb20067e474dda038943ec7573b47415 (patch)
tree4f7ebcf0702e188aa124b56694c1f62879dc663b /test/functional/ui/output_spec.lua
parent884b37fd2adda17fbcc2392ae871e6999b758895 (diff)
parent725074aafcb0b2b70fc798aec84a5ca9c2233716 (diff)
downloadrneovim-e57988a9fb20067e474dda038943ec7573b47415.tar.gz
rneovim-e57988a9fb20067e474dda038943ec7573b47415.tar.bz2
rneovim-e57988a9fb20067e474dda038943ec7573b47415.zip
Merge pull request #5197 from bfredl/screenfix
cleanup of screen tests: remove unnecessary hl_group and ignores of highlights
Diffstat (limited to 'test/functional/ui/output_spec.lua')
-rw-r--r--test/functional/ui/output_spec.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua
index c7c8986527..22ffc156ef 100644
--- a/test/functional/ui/output_spec.lua
+++ b/test/functional/ui/output_spec.lua
@@ -9,12 +9,12 @@ describe("shell command :!", function()
'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile"]')
screen:expect([[
{1: } |
- ~ |
- ~ |
- ~ |
- [No Name] |
+ {4:~ }|
+ {4:~ }|
+ {4:~ }|
+ {5:[No Name] }|
|
- -- TERMINAL -- |
+ {3:-- TERMINAL --} |
]])
end)
@@ -27,13 +27,13 @@ describe("shell command :!", function()
-- to avoid triggering a UI flush.
child_session.feed_data(":!printf foo; sleep 200\n")
screen:expect([[
- ~ |
- ~ |
- [No Name] |
- :!printf foo; sleep 200 |
+ {1: } |
+ {4:~ }|
+ {4:~ }|
+ {4:~ }|
+ {5:[No Name] }|
|
- foo |
- -- TERMINAL -- |
+ {3:-- TERMINAL --} |
]])
end)
end)