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

Commit e60bba3

Browse files
kagbakpemaddaleax
authored andcommitted
test: replace fixturesDir with fixtures methods
PR-URL: nodejs/node#15967 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 4a66ae2 commit e60bba3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/parallel/test-fs-read-stream-inherit.js

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

45
const assert = require('assert');
56
const fs = require('fs');
6-
const path = require('path');
7+
const fixtures = require('../common/fixtures');
78

8-
const fn = path.join(common.fixturesDir, 'elipses.txt');
9-
const rangeFile = path.join(common.fixturesDir, 'x.txt');
9+
const fn = fixtures.path('elipses.txt');
10+
const rangeFile = fixtures.path('x.txt');
1011

1112
{
1213
let paused = false;

0 commit comments

Comments
 (0)