test: change Fixes: to Refs:

Tests don't fix things generally, so use "Refs:" to refer people to
GitHub issues.

PR-URL: https://github.com/nodejs/node/pull/34568
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Rich Trott 2020-07-30 10:46:22 -07:00
parent aeaf16194b
commit 73d713b16e
3 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ fs.symlink(linkData, linkPath, common.mustCall(function(err) {
}));
tmpdir.refresh();
// Fixes: https://github.com/nodejs/node/issues/34514
// Refs: https://github.com/nodejs/node/issues/34514
fs.symlinkSync(Buffer.from(linkData), linkPath);
}));

View File

@ -6,8 +6,8 @@ const { Writable } = require('stream');
const assert = require('assert');
// Check that OutgoingMessage can be used without a proper Socket
// Fixes: https://github.com/nodejs/node/issues/14386
// Fixes: https://github.com/nodejs/node/issues/14381
// Refs: https://github.com/nodejs/node/issues/14386
// Refs: https://github.com/nodejs/node/issues/14381
class Response extends OutgoingMessage {
_implicitHeader() {}

View File

@ -6,8 +6,8 @@ const { Writable } = require('stream');
const assert = require('assert');
// Check that ServerResponse can be used without a proper Socket
// Fixes: https://github.com/nodejs/node/issues/14386
// Fixes: https://github.com/nodejs/node/issues/14381
// Refs: https://github.com/nodejs/node/issues/14386
// Refs: https://github.com/nodejs/node/issues/14381
const res = new ServerResponse({
method: 'GET',