From af4bfa8bc4e0e589c519f03f9e50fd8e520a0e7a Mon Sep 17 00:00:00 2001 From: Gregg Van Hove and Tim Jarratt Date: Fri, 4 Oct 2013 17:04:22 -0700 Subject: [PATCH] Env should use the "public" QueueRunner interface --- src/core/Env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Env.js b/src/core/Env.js index c1a8985f..5c1fa813 100644 --- a/src/core/Env.js +++ b/src/core/Env.js @@ -125,7 +125,7 @@ getJasmineRequireObj().Env = function(j$) { options.catchException = self.catchException; options.clearStack = options.clearStack || clearStack; - new j$.QueueRunner(options).run(options.fns, 0); + new j$.QueueRunner(options).execute(); }; var totalSpecsDefined = 0;