From 1f8afe15a4670b237a4e97d8038ddd75c7d9d227 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Sat, 9 Dec 2017 11:26:06 +0100 Subject: multigrid: add multigrid support to test infrastructure make Screen explicitly tied to its session --- test/helpers.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/helpers.lua') 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) -- cgit