From be6ff8b24cba355246df93d00d74a64de9e580ad Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Fri, 2 Dec 2016 10:08:39 -0800 Subject: [PATCH] Remove unused `message` param from Suite#pend - See #1132 --- lib/jasmine-core/jasmine.js | 2 +- src/core/Suite.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; };