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/health_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/health_spec.lua')
| -rw-r--r-- | test/functional/plugin/health_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index f2d5e433db..3525e235de 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -1,6 +1,5 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') -local plugin_helpers = require('test.functional.plugin.helpers') local clear = helpers.clear local curbuf_contents = helpers.curbuf_contents @@ -41,7 +40,7 @@ end) describe('health.vim', function() before_each(function() - plugin_helpers.reset() + clear{args={'-u', 'NORC'}} -- Provides functions: -- health#broken#check() -- health#success1#check() |