Skip to content

Commit 73d713b

Browse files
committed
test: change Fixes: to Refs:
Tests don't fix things generally, so use "Refs:" to refer people to GitHub issues. PR-URL: #34568 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent aeaf161 commit 73d713b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/parallel/test-fs-symlink.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fs.symlink(linkData, linkPath, common.mustCall(function(err) {
5858
}));
5959

6060
tmpdir.refresh();
61-
// Fixes: https://github.com/nodejs/node/issues/34514
61+
// Refs: https://github.com/nodejs/node/issues/34514
6262
fs.symlinkSync(Buffer.from(linkData), linkPath);
6363
}));
6464

test/parallel/test-http-outgoing-message-inheritance.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const { Writable } = require('stream');
66
const assert = require('assert');
77

88
// Check that OutgoingMessage can be used without a proper Socket
9-
// Fixes: https://github.com/nodejs/node/issues/14386
10-
// Fixes: https://github.com/nodejs/node/issues/14381
9+
// Refs: https://github.com/nodejs/node/issues/14386
10+
// Refs: https://github.com/nodejs/node/issues/14381
1111

1212
class Response extends OutgoingMessage {
1313
_implicitHeader() {}

test/parallel/test-http-server-response-standalone.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const { Writable } = require('stream');
66
const assert = require('assert');
77

88
// Check that ServerResponse can be used without a proper Socket
9-
// Fixes: https://github.com/nodejs/node/issues/14386
10-
// Fixes: https://github.com/nodejs/node/issues/14381
9+
// Refs: https://github.com/nodejs/node/issues/14386
10+
// Refs: https://github.com/nodejs/node/issues/14381
1111

1212
const res = new ServerResponse({
1313
method: 'GET',

0 commit comments

Comments
 (0)