diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-03 01:55:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 01:55:09 -0400 |
commit | c402f6e7a9135490a9f05e4cac733e41c6815b2d (patch) | |
tree | 9e90c402b768cbd2bf013447d84ebcba19b79c08 /test/functional/options/defaults_spec.lua | |
parent | f80eb768c75de2065626203de001738e1dda436e (diff) | |
parent | 173d366a5b0b5f0784a1da8aef4fe5d0cab7e1ec (diff) | |
download | rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.gz rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.bz2 rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.zip |
Merge #5001 from justinmk/t_colors
TUI: infer 256 colors more liberally; listen to unibilium in other cases
Diffstat (limited to 'test/functional/options/defaults_spec.lua')
-rw-r--r-- | test/functional/options/defaults_spec.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua index ed978cd17e..a36939b0bd 100644 --- a/test/functional/options/defaults_spec.lua +++ b/test/functional/options/defaults_spec.lua @@ -1,6 +1,6 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') -local clear, eval, eq = helpers.clear, helpers.eval, helpers.eq +local eval, eq = helpers.eval, helpers.eq local execute = helpers.execute local function init_session(...) @@ -15,10 +15,6 @@ local function init_session(...) end describe('startup defaults', function() - before_each(function() - clear() - end) - describe(':filetype', function() local function expect_filetype(expected) local screen = Screen.new(48, 4) |