Skip to content

Commit

Permalink
Remove unused message param from Suite#pend
Browse files Browse the repository at this point in the history
- See #1132
  • Loading branch information
Gregg Van Hove committed Dec 2, 2016
1 parent da2005f commit be6ff8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/jasmine-core/jasmine.js
Expand Up @@ -2442,7 +2442,7 @@ getJasmineRequireObj().Suite = function(j$) {
return fullName.join(' ');
};

Suite.prototype.pend = function(message) {
Suite.prototype.pend = function() {
this.markedPending = true;
};

Expand Down
2 changes: 1 addition & 1 deletion src/core/Suite.js
Expand Up @@ -37,7 +37,7 @@ getJasmineRequireObj().Suite = function(j$) {
return fullName.join(' ');
};

Suite.prototype.pend = function(message) {
Suite.prototype.pend = function() {
this.markedPending = true;
};

Expand Down

0 comments on commit be6ff8b

Please sign in to comment.