Skip to content

Commit

Permalink
test: replace fixturesDir with fixtures methods
Browse files Browse the repository at this point in the history
PR-URL: #15967
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
kagbakpem authored and MylesBorins committed Nov 28, 2017
1 parent a28d666 commit 53449f3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/parallel/test-fs-read-stream-inherit.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
'use strict';

const common = require('../common');
const assert = require('assert');

const path = require('path');
const fs = require('fs');
const fn = path.join(common.fixturesDir, 'elipses.txt');
const rangeFile = path.join(common.fixturesDir, 'x.txt');
const fixtures = require('../common/fixtures');

const fn = fixtures.path('elipses.txt');
const rangeFile = fixtures.path('x.txt');

let paused = false;

Expand Down

0 comments on commit 53449f3

Please sign in to comment.