Skip to content

Commit 8fcc84d

Browse files
committed
fixup! test: fix spelling in test case comments
1 parent 849676d commit 8fcc84d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

test/parallel/test-http-agent-keepalive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function remoteClose() {
102102
}
103103

104104
function remoteError() {
105-
// remove server will destroy the socket
105+
// remote server will destroy the socket
106106
const req = get('/error', common.mustNotCall());
107107
req.on('error', common.mustCall((err) => {
108108
assert(err);

test/parallel/test-http-extra-response.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ const server = net.createServer(function(socket) {
5151

5252
if (postBody.includes('\r\n')) {
5353
socket.write(fullResponse);
54-
// I wrote the response twice, what a terrible HTTP server I am.
5554
socket.end(fullResponse);
5655
}
5756
});

test/parallel/test-promises-unhandled-rejections.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ asyncTest('While inside setImmediate, catching a rejected promise derived ' +
293293
});
294294
});
295295

296-
// State adaption tests
296+
// State adaptation tests
297297
asyncTest('catching a promise which is asynchronously rejected (via ' +
298298
'resolution to an asynchronously-rejected promise) prevents' +
299299
' unhandledRejection', function(done) {

0 commit comments

Comments
 (0)