aboutsummaryrefslogtreecommitdiff
path: root/test/unit/helpers.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-18 21:50:57 +0200
committerGitHub <noreply@github.com>2019-05-18 21:50:57 +0200
commit1cbe0145695bea4168b4e23f61e29e51684088e1 (patch)
tree67e894a87ed21808c41eb84b6406c370311c4943 /test/unit/helpers.lua
parentaa610690bf9e525fcd172def37e14505ac449cf2 (diff)
parent9d7aaf7149a5543b1ddfc89fb506a1019bec3ffb (diff)
downloadrneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.tar.gz
rneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.tar.bz2
rneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.zip
Merge #9301 'runtime/lua'
Diffstat (limited to 'test/unit/helpers.lua')
-rw-r--r--test/unit/helpers.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua
index beb25f25db..e634b7296e 100644
--- a/test/unit/helpers.lua
+++ b/test/unit/helpers.lua
@@ -15,7 +15,6 @@ local dedent = global_helpers.dedent
local neq = global_helpers.neq
local map = global_helpers.map
local eq = global_helpers.eq
-local ok = global_helpers.ok
-- C constants.
local NULL = ffi.cast('void*', 0)
@@ -842,9 +841,6 @@ local module = {
cimport = cimport,
cppimport = cppimport,
internalize = internalize,
- ok = ok,
- eq = eq,
- neq = neq,
ffi = ffi,
lib = lib,
cstr = cstr,
@@ -869,6 +865,7 @@ local module = {
ptr2key = ptr2key,
debug_log = debug_log,
}
+module = global_helpers.tbl_extend('error', module, global_helpers)
return function()
return module
end