Cscott has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/256379

Change subject: Remove excess parameter from `startServer` call.
......................................................................

Remove excess parameter from `startServer` call.

This was an oversight in the refactor done by
I8fba8f83a78ba97527dc3908591c24d0334d178c.

Change-Id: Iab21c66cc05189aff8824e5d793cbf5d04265f1d
---
M tests/apiServer.js
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/parsoid 
refs/changes/79/256379/1

diff --git a/tests/apiServer.js b/tests/apiServer.js
index 5b60026..219d9b1 100644
--- a/tests/apiServer.js
+++ b/tests/apiServer.js
@@ -152,7 +152,7 @@
 // Returns a Promise; the `cb` parameter is optional (for legacy use)
 var startParsoidServer = function(opts, cb) {
        opts = !opts ? parsoidServerOpts : Util.extendProps(opts, 
parsoidServerOpts);
-       return startServer(opts, false, cb);
+       return startServer(opts, cb);
 };
 
 var mockAPIServerOpts = {
@@ -168,7 +168,7 @@
 // Returns a Promise; the `cb` parameter is optional (for legacy use)
 var startMockAPIServer = function(opts, cb) {
        opts = !opts ? mockAPIServerOpts : Util.extendProps(opts, 
mockAPIServerOpts);
-       return startServer(opts, false, cb);
+       return startServer(opts, cb);
 };
 
 module.exports = {

-- 
To view, visit https://gerrit.wikimedia.org/r/256379
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iab21c66cc05189aff8824e5d793cbf5d04265f1d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/parsoid
Gerrit-Branch: master
Gerrit-Owner: Cscott <canan...@wikimedia.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to