From 2a8576dfa5138254d78d47de0f03355984507f67 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Wed, 17 Nov 2021 20:09:37 +0100 Subject: [PATCH] test: use descriptive name for destination file `http2-url-tests.js` is misleading. Use the same name of the source file instead. PR-URL: /~https://github.com/nodejs/node/pull/40842 Fixes: /~https://github.com/nodejs/node/issues/40277 Reviewed-By: Robert Nagy Reviewed-By: Adrian Estrada --- test/parallel/test-http2-pipe-named-pipe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-http2-pipe-named-pipe.js b/test/parallel/test-http2-pipe-named-pipe.js index 7882f79657f701..5d4f2caadb5e53 100644 --- a/test/parallel/test-http2-pipe-named-pipe.js +++ b/test/parallel/test-http2-pipe-named-pipe.js @@ -15,7 +15,7 @@ const path = require('path'); const tmpdir = require('../common/tmpdir'); tmpdir.refresh(); const loc = fixtures.path('person-large.jpg'); -const fn = path.join(tmpdir.path, 'http2-url-tests.js'); +const fn = path.join(tmpdir.path, 'person-large.jpg'); const server = http2.createServer();