Skip to content

Commit 6f42b68

Browse files
DruoticMylesBorins
authored andcommitted
test: replace common.fixturesDir w/ fixtures.path
PR-URL: #15819 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent ab7448e commit 6f42b68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-tls-connect-secure-context.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
'use strict';
2-
const common = require('../common');
2+
require('../common');
33

44
// Verify connection with explicitly created client SecureContext.
55

6-
const join = require('path').join;
6+
const fixtures = require('../common/fixtures');
77
const {
88
assert, connect, keys, tls
9-
} = require(join(common.fixturesDir, 'tls-connect'));
9+
} = require(fixtures.path('tls-connect'));
1010

1111
connect({
1212
client: {

0 commit comments

Comments
 (0)