aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/execute_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-08-09 15:11:04 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-08-14 21:53:02 +0200
commitf282b8ecac37e7776674a7eb48397f29eb6d173e (patch)
tree67a212dedbf82ca2b5dfaf7c699b566860698d4c /test/functional/eval/execute_spec.lua
parent0a882b48183074adf91ee8c011e520cc7f64e94f (diff)
downloadrneovim-f282b8ecac37e7776674a7eb48397f29eb6d173e.tar.gz
rneovim-f282b8ecac37e7776674a7eb48397f29eb6d173e.tar.bz2
rneovim-f282b8ecac37e7776674a7eb48397f29eb6d173e.zip
tests: don't ignore highlights in various tests
Diffstat (limited to 'test/functional/eval/execute_spec.lua')
-rw-r--r--test/functional/eval/execute_spec.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/eval/execute_spec.lua b/test/functional/eval/execute_spec.lua
index a91a04341f..10a6de6eb4 100644
--- a/test/functional/eval/execute_spec.lua
+++ b/test/functional/eval/execute_spec.lua
@@ -72,13 +72,13 @@ describe('execute()', function()
it('silences command run inside', function()
local screen = Screen.new(20, 5)
screen:attach()
- screen:set_default_attr_ignore({{bold=true, foreground=255}})
+ screen:set_default_attr_ids( {[0] = {bold=true, foreground=255}} )
feed(':let g:mes = execute("echon 42")<CR>')
screen:expect([[
^ |
- ~ |
- ~ |
- ~ |
+ {0:~ }|
+ {0:~ }|
+ {0:~ }|
|
]])
eq('42', eval('g:mes'))