diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-12-09 11:26:06 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 12:44:22 +0100 |
commit | 1f8afe15a4670b237a4e97d8038ddd75c7d9d227 (patch) | |
tree | ad831df486bc209b7b650a4c164167e06fdc2c27 /test/helpers.lua | |
parent | f77f09ea6e0e540a636990df84d09166a757482f (diff) | |
download | rneovim-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.lua | 4 |
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) |