diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-06 01:36:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-06 01:36:01 +0200 |
| commit | 067a39ba854cc02a750911ead968a744b2769aac (patch) | |
| tree | 05d9594c9c8a0f89d49415a611d19c713aef705c /test/functional/plugin/matchparen_spec.lua | |
| parent | a29358dc58a11c7f6b82844d8309d5a5b2c8cb91 (diff) | |
| parent | f6c94124368bd14a83e83d4f172b8939d0503daf (diff) | |
| download | rneovim-067a39ba854cc02a750911ead968a744b2769aac.tar.gz rneovim-067a39ba854cc02a750911ead968a744b2769aac.tar.bz2 rneovim-067a39ba854cc02a750911ead968a744b2769aac.zip | |
Merge #10701 from justinmk/test-fixes
test: Eliminate plugin/helpers.lua
Diffstat (limited to 'test/functional/plugin/matchparen_spec.lua')
| -rw-r--r-- | test/functional/plugin/matchparen_spec.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/plugin/matchparen_spec.lua b/test/functional/plugin/matchparen_spec.lua index 51ec7e4870..13e1283e2c 100644 --- a/test/functional/plugin/matchparen_spec.lua +++ b/test/functional/plugin/matchparen_spec.lua @@ -1,19 +1,17 @@ local helpers = require('test.functional.helpers')(after_each) -local plugin_helpers = require('test.functional.plugin.helpers') local Screen = require('test.functional.ui.screen') +local clear = helpers.clear local command = helpers.command local meths = helpers.meths local feed = helpers.feed local eq = helpers.eq -local reset = plugin_helpers.reset - describe('matchparen', function() local screen before_each(function() - reset() + clear{args={'-u', 'NORC'}} screen = Screen.new(20,5) screen:attach() screen:set_default_attr_ids( { |