Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: use fixtures.fixturesDir
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#15822
Reviewed-By: Lance Ball <lball@redhat.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
  • Loading branch information
genewoo authored and addaleax committed Oct 15, 2017
1 parent 5640386 commit 7495beb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-fs-symlink-dir-junction-relative.js
Original file line number Diff line number Diff line change
@@ -23,14 +23,15 @@
// Test creating and resolving relative junction or symbolic link

const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const path = require('path');
const fs = require('fs');

const linkPath1 = path.join(common.tmpDir, 'junction1');
const linkPath2 = path.join(common.tmpDir, 'junction2');
const linkTarget = path.join(common.fixturesDir);
const linkData = path.join(common.fixturesDir);
const linkTarget = fixtures.fixturesDir;
const linkData = fixtures.fixturesDir;

common.refreshTmpDir();

0 comments on commit 7495beb

Please sign in to comment.