From bb818804c40a28ee7f6395daf47a038ffdb346db Mon Sep 17 00:00:00 2001 From: Raphael Rheault <raphael.rheault@gmail.com> Date: Fri, 6 Oct 2017 13:11:15 -0400 Subject: [PATCH] test: use fixtures module in test-fs-realpath.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/15904 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> --- test/parallel/test-fs-realpath.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-fs-realpath.js b/test/parallel/test-fs-realpath.js index f5ac4e9beadae3..60a970662ccf8b 100644 --- a/test/parallel/test-fs-realpath.js +++ b/test/parallel/test-fs-realpath.js @@ -1,5 +1,7 @@ 'use strict'; const common = require('../common'); +const fixtures = require('../common/fixtures'); + const assert = require('assert'); const fs = require('fs'); const path = require('path'); @@ -111,7 +113,7 @@ function test_simple_absolute_symlink(callback) { console.log('using type=%s', type); const entry = `${tmpAbsDir}/symlink`; - const expected = `${common.fixturesDir}/nested-index/one`; + const expected = fixtures.path('nested-index', 'one'); [ [entry, expected] ].forEach(function(t) { @@ -134,7 +136,7 @@ function test_deep_relative_file_symlink(callback) { return runNextTest(); } - const expected = path.join(common.fixturesDir, 'cycles', 'root.js'); + const expected = fixtures.path('cycles', 'root.js'); const linkData1 = path .relative(path.join(targetsAbsDir, 'nested-index', 'one'), expected); @@ -163,7 +165,7 @@ function test_deep_relative_dir_symlink(callback) { common.printSkipMessage('symlink test (no privs)'); return runNextTest(); } - const expected = path.join(common.fixturesDir, 'cycles', 'folder'); + const expected = fixtures.path('cycles', 'folder'); const path1b = path.join(targetsAbsDir, 'nested-index', 'one'); const linkPath1b = path.join(path1b, 'symlink1-dir'); const linkData1b = path.relative(path1b, expected);