From c5cf414732a859b12b22baf22a5642fea16807e0 Mon Sep 17 00:00:00 2001 From: osher Date: Tue, 15 May 2012 01:38:23 +0300 Subject: [PATCH] if you try to run serialy tests that were originally written for parallel - you get 'undefined' for the named assert argument. this change is required for consistency between writing serial and paralel tests the same way --- bin/expresso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/expresso b/bin/expresso index 4c3e4f8..b0273c7 100755 --- a/bin/expresso +++ b/bin/expresso @@ -952,7 +952,7 @@ Test.prototype.runSerial = function(callback) { test.report(); }); }; - test.fn(test.callback); + test.fn(test.callback, test.assert); } }); };