From 235909044a2ed270352368f17e5256dc91930033 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Sun, 1 Mar 2015 09:00:27 -0500 Subject: tests: require luassert in the helpers This is necessary for newer versions of Busted, otherwise assert will be nil and the tests will die. Note: this does not mean the tests now work with the latest Busted. There are still several issues preventing that from happening. --- test/unit/helpers.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'test/unit/helpers.lua') diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 1b97a2f15a..708e7a94ab 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -1,3 +1,4 @@ +local assert = require('luassert') local ffi = require('ffi') local formatc = require('test.unit.formatc') local Set = require('test.unit.set') -- cgit