Skip to content

Commit 4341b39

Browse files
TrottMichael Scovetta
authored and
Michael Scovetta
committed
test: require common module only once
Two tests were requiring the common module twice. This removes the duplicate require statement in the tests. PR-URL: nodejs#4611 Reviewed-By: Brian White <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 77dceb4 commit 4341b39

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

test/parallel/test-tls-0-dns-altname.js

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ var tls = require('tls');
1010

1111
var fs = require('fs');
1212

13-
var common = require('../common');
14-
1513
var requests = 0;
1614

1715
var server = tls.createServer({

test/parallel/test-tls-max-send-fragment.js

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ var tls = require('tls');
1010

1111
var fs = require('fs');
1212

13-
var common = require('../common');
14-
1513
var buf = new Buffer(10000);
1614
var received = 0;
1715
var ended = 0;

0 commit comments

Comments
 (0)