From 636931153d1a2b0e4c70683ca84c7b95f83d0af3 Mon Sep 17 00:00:00 2001 From: Gavin Kistner Date: Sat, 16 Feb 2013 23:47:40 -0700 Subject: [PATCH] Fix accidental breakage --- test/lunity.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lunity.lua b/test/lunity.lua index 7cea2c3..6c9b0a4 100644 --- a/test/lunity.lua +++ b/test/lunity.lua @@ -253,7 +253,7 @@ function assertInvokable( value, msg ) return __assertionSucceeded() end -function assertErrors( msg, invokable, ... ) +function assertErrors( invokable, ... ) assertInvokable( invokable ) if pcall(invokable,...) then local msg = string.format( "assertErrors() failed: %s did not raise an error",