Skip to content

Commit 5b1f546

Browse files
TrottMyles Borins
authored and
Myles Borins
committed
test: remove non-incremental common.PORT changes
Remove uses of `common.PORT + 1337` where `common.PORT` suffices. PR-URL: #7055 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Refs: #6990
1 parent 6ece2a0 commit 5b1f546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/debugger/helper-debugger-repl.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var common = require('../common');
44
var assert = require('assert');
55
var spawn = require('child_process').spawn;
66

7-
var port = common.PORT + 1337;
7+
var port = common.PORT;
88

99
var child;
1010
var buffer = '';

test/debugger/test-debugger-client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var common = require('../common');
44
var assert = require('assert');
55
var debug = require('_debugger');
66

7-
var debugPort = common.PORT + 1337;
7+
var debugPort = common.PORT;
88
debug.port = debugPort;
99
var spawn = require('child_process').spawn;
1010

0 commit comments

Comments
 (0)