diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-05 04:51:49 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-05 04:51:49 +0200 |
commit | d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c (patch) | |
tree | 6c69695a8822cb42c4d5f1ff1cf23b440d9455ff /test/functional/plugin/man_spec.lua | |
parent | eec529cf9e13e8f20dde023ea81f5458948859a5 (diff) | |
download | rneovim-d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c.tar.gz rneovim-d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c.tar.bz2 rneovim-d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c.zip |
test/man_spec: remove plugin_helpers.reset()
The call to plugin_helpers.reset() is redundant with the clear() call
above it. Probably just a copy-paste mistake.
Avoids exit_event race #8813.
Helped-by: Björn Linse <bjorn.linse@gmail.com>
Diffstat (limited to 'test/functional/plugin/man_spec.lua')
-rw-r--r-- | test/functional/plugin/man_spec.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/plugin/man_spec.lua b/test/functional/plugin/man_spec.lua index b25bd7e85a..d95995797e 100644 --- a/test/functional/plugin/man_spec.lua +++ b/test/functional/plugin/man_spec.lua @@ -1,5 +1,4 @@ local helpers = require('test.functional.helpers')(after_each) -local plugin_helpers = require('test.functional.plugin.helpers') local Screen = require('test.functional.ui.screen') local command, eval, rawfeed = helpers.command, helpers.eval, helpers.rawfeed local clear = helpers.clear @@ -9,7 +8,6 @@ describe(':Man', function() local screen before_each(function() - plugin_helpers.reset() clear() command('syntax on') command('set filetype=man') |