Skip to content

Commit

Permalink
test: remove non-incremental common.PORT changes
Browse files Browse the repository at this point in the history
Remove uses of `common.PORT + 1337` where `common.PORT` suffices.

PR-URL: nodejs#7055
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Refs: nodejs#6990
  • Loading branch information
Trott committed Jun 2, 2016
1 parent 88804b8 commit 85da963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/debugger/helper-debugger-repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var common = require('../common');
var assert = require('assert');
var spawn = require('child_process').spawn;

var port = common.PORT + 1337;
var port = common.PORT;

var child;
var buffer = '';
Expand Down
2 changes: 1 addition & 1 deletion test/debugger/test-debugger-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var common = require('../common');
var assert = require('assert');
var debug = require('_debugger');

var debugPort = common.PORT + 1337;
var debugPort = common.PORT;
debug.port = debugPort;
var spawn = require('child_process').spawn;

Expand Down

0 comments on commit 85da963

Please sign in to comment.