diff options
Diffstat (limited to 'test/functional/shada/errors_spec.lua')
-rw-r--r-- | test/functional/shada/errors_spec.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/shada/errors_spec.lua b/test/functional/shada/errors_spec.lua index 736a6956af..a9084da929 100644 --- a/test/functional/shada/errors_spec.lua +++ b/test/functional/shada/errors_spec.lua @@ -1,8 +1,9 @@ -- ShaDa errors handling support -local t = require('test.functional.testutil')() -local nvim_command, eq, exc_exec = t.command, t.eq, t.exc_exec - +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local t_shada = require('test.functional.shada.testutil') + +local nvim_command, eq, exc_exec = n.command, t.eq, n.exc_exec local reset, clear, get_shada_rw = t_shada.reset, t_shada.clear, t_shada.get_shada_rw local wshada, sdrcmd, shada_fname, clean = get_shada_rw('Xtest-functional-shada-errors.shada') |