Skip to content

Commit

Permalink
Use fixturesDir in the test-fs-error-messages.js instead of fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
kanika46shah committed Oct 11, 2017
1 parent dcb24e3 commit 68a0f08
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/parallel/test-fs-error-messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@

'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const path = require('path');
const fs = require('fs');
const fn = path.join(common.fixturesDir, 'non-existent');
const existingFile = path.join(common.fixturesDir, 'exit.js');
const existingFile2 = path.join(common.fixturesDir, 'create-file.js');
const existingDir = path.join(common.fixturesDir, 'empty');
const existingDir2 = path.join(common.fixturesDir, 'keys');
const fn = fixtures.path('non-existent');
const existingFile = fixtures.path('exit.js');
const existingFile2 = fixtures.path('create-file.js');
const existingDir = fixtures.path('empty');
const existingDir2 = fixtures.path('keys');

// ASYNC_CALL

Expand Down

0 comments on commit 68a0f08

Please sign in to comment.