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
+1 -1
View File
@@ -273,7 +273,7 @@ getJasmineRequireObj().Env = function(j$) {
// TODO: move this to closure // TODO: move this to closure
Env.prototype.describe = function(description, specDefinitions) { Env.prototype.describe = function(description, specDefinitions) {
var suite = this.suiteFactory(description, specDefinitions); var suite = this.suiteFactory(description);
var parentSuite = this.currentSuite; var parentSuite = this.currentSuite;
parentSuite.addSuite(suite); parentSuite.addSuite(suite);