Skip to content

Commit

Permalink
test: replace common.fixturesDir w/ fixtures.path
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Druotic authored and MylesBorins committed Oct 11, 2017
1 parent ab7448e commit 6f42b68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-tls-connect-secure-context.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
'use strict';
const common = require('../common');
require('../common');

// Verify connection with explicitly created client SecureContext.

const join = require('path').join;
const fixtures = require('../common/fixtures');
const {
assert, connect, keys, tls
} = require(join(common.fixturesDir, 'tls-connect'));
} = require(fixtures.path('tls-connect'));

connect({
client: {
Expand Down

0 comments on commit 6f42b68

Please sign in to comment.