diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 2931f6be..1f6726b1 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -2442,7 +2442,7 @@ getJasmineRequireObj().Suite = function(j$) { return fullName.join(' '); }; - Suite.prototype.pend = function(message) { + Suite.prototype.pend = function() { this.markedPending = true; }; diff --git a/src/core/Suite.js b/src/core/Suite.js index 820b08e2..8e311ed3 100644 --- a/src/core/Suite.js +++ b/src/core/Suite.js @@ -37,7 +37,7 @@ getJasmineRequireObj().Suite = function(j$) { return fullName.join(' '); }; - Suite.prototype.pend = function(message) { + Suite.prototype.pend = function() { this.markedPending = true; };