aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-10-13 23:43:06 +0200
committerGitHub <noreply@github.com>2019-10-13 23:43:06 +0200
commitba082885d23fe4e1de94474fb616428bd6e00d6e (patch)
tree4574533679c6ac166b7424a8f0c4fb4c735aba01 /test/functional/ex_cmds
parent5cf6beb22178a844bc1b6e75e744eb04508b865c (diff)
parentcc0d7252304f10ed6cdc0bc58789100093f7d021 (diff)
downloadrneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.gz
rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.bz2
rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.zip
Merge pull request #11206 from bfredl/testattr
tests/refactor: make screen.ui use "linegrid" representation internally
Diffstat (limited to 'test/functional/ex_cmds')
-rw-r--r--test/functional/ex_cmds/drop_spec.lua4
-rw-r--r--test/functional/ex_cmds/highlight_spec.lua4
2 files changed, 0 insertions, 8 deletions
diff --git a/test/functional/ex_cmds/drop_spec.lua b/test/functional/ex_cmds/drop_spec.lua
index d6da0d8e88..762ea3d166 100644
--- a/test/functional/ex_cmds/drop_spec.lua
+++ b/test/functional/ex_cmds/drop_spec.lua
@@ -19,10 +19,6 @@ describe(":drop", function()
command("set laststatus=2 shortmess-=F")
end)
- after_each(function()
- screen:detach()
- end)
-
it("works like :e when called with only one window open", function()
feed_command("drop tmp1.vim")
screen:expect([[
diff --git a/test/functional/ex_cmds/highlight_spec.lua b/test/functional/ex_cmds/highlight_spec.lua
index 25968b8204..1cd6759a53 100644
--- a/test/functional/ex_cmds/highlight_spec.lua
+++ b/test/functional/ex_cmds/highlight_spec.lua
@@ -13,10 +13,6 @@ describe(':highlight', function()
screen:attach()
end)
- after_each(function()
- screen:detach()
- end)
-
it('invalid color name', function()
eq('Vim(highlight):E421: Color name or number not recognized: ctermfg=#181818',
exc_exec("highlight normal ctermfg=#181818"))