mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
test: switch to fixtures module
In test-file-read-noexist, switch from common.fixturesDir to the fixtures module. PR-URL: https://github.com/nodejs/node/pull/15880 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
adbc5d7d57
commit
152bf22d02
@ -21,11 +21,11 @@
|
||||
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
const fixtures = require('../common/fixtures');
|
||||
const assert = require('assert');
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
const filename = path.join(common.fixturesDir, 'does_not_exist.txt');
|
||||
const filename = fixtures.path('does_not_exist.txt');
|
||||
fs.readFile(filename, 'latin1', common.mustCall(function(err, content) {
|
||||
assert.ok(err);
|
||||
assert.strictEqual(err.code, 'ENOENT');
|
||||
|
Loading…
Reference in New Issue
Block a user