Browse Source

test: replaced fixturesDir with fixtures module

This was an assigned task at Node.js Interactive North America 2017.
This replaced the fixturesDir exported by the common module with
the fixturesDir on the common/fixtures module in the path-makelong test.

PR-URL: https://github.com/nodejs/node/pull/15908
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
v9.x-staging
Alex McKenzie 8 years ago
committed by Ruben Bridgewater
parent
commit
585c1199a2
No known key found for this signature in database GPG Key ID: F07496B3EB3C1762
  1. 3
      test/parallel/test-path-makelong.js

3
test/parallel/test-path-makelong.js

@ -21,11 +21,12 @@
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const path = require('path');
if (common.isWindows) {
const file = path.join(common.fixturesDir, 'a.js');
const file = fixtures.path('a.js');
const resolvedFile = path.resolve(file);
assert.strictEqual(`\\\\?\\${resolvedFile}`,

Loading…
Cancel
Save