Removed unnecessary parameter from suiteFactory() call.

This commit is contained in:
Valera Rozuvan
2013-07-01 14:02:25 +03:00
parent 661a884416
commit 8ac33ff6c2

View File

@@ -273,7 +273,7 @@ getJasmineRequireObj().Env = function(j$) {
// TODO: move this to closure
Env.prototype.describe = function(description, specDefinitions) {
var suite = this.suiteFactory(description, specDefinitions);
var suite = this.suiteFactory(description);
var parentSuite = this.currentSuite;
parentSuite.addSuite(suite);