diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-18 09:29:54 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-19 00:49:18 +0200 |
commit | a316258d2c15e180b4cd9d59cfad3f9f1eaf2fcc (patch) | |
tree | 591598c1770713ee0f08a97002a79287eb188a19 /test/functional/eval/system_spec.lua | |
parent | 809fff94e6786875cc852b98550cc73e65b33a87 (diff) | |
download | rneovim-a316258d2c15e180b4cd9d59cfad3f9f1eaf2fcc.tar.gz rneovim-a316258d2c15e180b4cd9d59cfad3f9f1eaf2fcc.tar.bz2 rneovim-a316258d2c15e180b4cd9d59cfad3f9f1eaf2fcc.zip |
test: system_spec: remove redundant clear()
Diffstat (limited to 'test/functional/eval/system_spec.lua')
-rw-r--r-- | test/functional/eval/system_spec.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/functional/eval/system_spec.lua b/test/functional/eval/system_spec.lua index 03aa7fa45f..0d84f47b65 100644 --- a/test/functional/eval/system_spec.lua +++ b/test/functional/eval/system_spec.lua @@ -124,7 +124,6 @@ describe('system()', function() local screen before_each(function() - clear() screen = Screen.new() screen:attach() end) @@ -428,13 +427,12 @@ describe('systemlist()', function() local screen before_each(function() - clear() - screen = Screen.new() - screen:attach() + screen = Screen.new() + screen:attach() end) after_each(function() - screen:detach() + screen:detach() end) it('`echo` and waits for its return', function() |