Skip to content

Commit b14b2ae

Browse files
TrottMyles Borins
authored and
Myles Borins
committedJan 12, 2016
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: #4611 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 145b668 commit b14b2ae

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)
Please sign in to comment.