aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-12-09 11:26:06 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2018-12-31 12:44:22 +0100
commit1f8afe15a4670b237a4e97d8038ddd75c7d9d227 (patch)
treead831df486bc209b7b650a4c164167e06fdc2c27 /test/helpers.lua
parentf77f09ea6e0e540a636990df84d09166a757482f (diff)
downloadrneovim-1f8afe15a4670b237a4e97d8038ddd75c7d9d227.tar.gz
rneovim-1f8afe15a4670b237a4e97d8038ddd75c7d9d227.tar.bz2
rneovim-1f8afe15a4670b237a4e97d8038ddd75c7d9d227.zip
multigrid: add multigrid support to test infrastructure
make Screen explicitly tied to its session
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 6ef7a456f4..a6ed312213 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -49,8 +49,8 @@ local check_logs_useless_lines = {
local function eq(expected, actual, ctx)
return assert.are.same(expected, actual, ctx)
end
-local function neq(expected, actual)
- return assert.are_not.same(expected, actual)
+local function neq(expected, actual, context)
+ return assert.are_not.same(expected, actual, context)
end
local function ok(res)
return assert.is_true(res)