Browse Source

test: http2-respond-file-errors to fixtures module

Replace common.fixturesDir with fixtures in
test-http2-respond-file-errors.js.

PR-URL: https://github.com/nodejs/node/pull/16004
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
v9.x-staging
David8472 7 years ago
committed by Matteo Collina
parent
commit
7ab0a9a3c8
  1. 4
      test/parallel/test-http2-respond-file-errors.js

4
test/parallel/test-http2-respond-file-errors.js

@ -3,8 +3,8 @@
const common = require('../common'); const common = require('../common');
if (!common.hasCrypto) if (!common.hasCrypto)
common.skip('missing crypto'); common.skip('missing crypto');
const fixtures = require('../common/fixtures');
const http2 = require('http2'); const http2 = require('http2');
const path = require('path');
const { const {
HTTP2_HEADER_CONTENT_TYPE, HTTP2_HEADER_CONTENT_TYPE,
@ -28,7 +28,7 @@ const types = {
symbol: Symbol('test') symbol: Symbol('test')
}; };
const fname = path.resolve(common.fixturesDir, 'elipses.txt'); const fname = fixtures.path('elipses.txt');
const server = http2.createServer(); const server = http2.createServer();

Loading…
Cancel
Save