From d4a0b6c4e1d78f19bf5879b113c5252d5a4f2e5c Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 5 Aug 2019 04:51:49 +0200 Subject: test/man_spec: remove plugin_helpers.reset() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- test/functional/plugin/man_spec.lua | 2 -- 1 file changed, 2 deletions(-) (limited to 'test/functional/plugin/man_spec.lua') 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') -- cgit