aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/highlight_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-11-27 22:07:23 +0100
committerGitHub <noreply@github.com>2017-11-27 22:07:23 +0100
commitd109f5645bac1ff780385ff84b269e79b6f21020 (patch)
treedc1e94aad2610394d900d20fb0524fb96ceedbce /test/functional/ui/highlight_spec.lua
parente3c4c8a90e04316d1290729f6952a89ea2733cb6 (diff)
parent6cf186edb5dec13bc7f4cd57be726d124af578de (diff)
downloadrneovim-d109f5645bac1ff780385ff84b269e79b6f21020.tar.gz
rneovim-d109f5645bac1ff780385ff84b269e79b6f21020.tar.bz2
rneovim-d109f5645bac1ff780385ff84b269e79b6f21020.zip
Merge #7640 'term' option
Diffstat (limited to 'test/functional/ui/highlight_spec.lua')
-rw-r--r--test/functional/ui/highlight_spec.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua
index d1357ea525..2252e3580f 100644
--- a/test/functional/ui/highlight_spec.lua
+++ b/test/functional/ui/highlight_spec.lua
@@ -4,7 +4,7 @@ local os = require('os')
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
local command = helpers.command
local eval, exc_exec = helpers.eval, helpers.exc_exec
-local feed_command, request, eq = helpers.feed_command, helpers.request, helpers.eq
+local feed_command, eq = helpers.feed_command, helpers.eq
local curbufmeths = helpers.curbufmeths
describe('colorscheme compatibility', function()
@@ -14,8 +14,6 @@ describe('colorscheme compatibility', function()
it('t_Co is set to 256 by default', function()
eq('256', eval('&t_Co'))
- request('nvim_set_option', 't_Co', '88')
- eq('88', eval('&t_Co'))
end)
end)