Remove unused message param from Suite#pend

- See #1132
This commit is contained in:
Gregg Van Hove
2016-12-02 10:08:39 -08:00
parent da2005fe97
commit be6ff8b24c
2 changed files with 2 additions and 2 deletions

View File

@@ -2442,7 +2442,7 @@ getJasmineRequireObj().Suite = function(j$) {
return fullName.join(' ');
};
Suite.prototype.pend = function(message) {
Suite.prototype.pend = function() {
this.markedPending = true;
};

View File

@@ -37,7 +37,7 @@ getJasmineRequireObj().Suite = function(j$) {
return fullName.join(' ');
};
Suite.prototype.pend = function(message) {
Suite.prototype.pend = function() {
this.markedPending = true;
};