aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-11-30 02:02:55 +0300
committerZyX <kp-pav@yandex.ru>2017-11-30 02:02:55 +0300
commitb588ccddd7f5998ce7d9780463480ca844963859 (patch)
tree78f1e0f58209385aa63e0e25e071a5893635790d /test/functional/ui
parentde45ec0146486c49719ff6f6dcceb4914b471c7a (diff)
parent4618c9c43b2fe052332329b347ac10b4b1db94b5 (diff)
downloadrneovim-b588ccddd7f5998ce7d9780463480ca844963859.tar.gz
rneovim-b588ccddd7f5998ce7d9780463480ca844963859.tar.bz2
rneovim-b588ccddd7f5998ce7d9780463480ca844963859.zip
Merge branch 'master' into expression-parser
Diffstat (limited to 'test/functional/ui')
-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)