Skip to content

Commit f1009ae

Browse files
Trottbengl
authored andcommitted
test: fix typographical error
"Timeouted" to "Timed out" PR-URL: #41983 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 1e862b3 commit f1009ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const http = require('http');
3434
}
3535

3636
{
37-
// Ensure that timeouted sockets are not reused.
37+
// Ensure that timed-out sockets are not reused.
3838

3939
const agent = new http.Agent({ keepAlive: true, timeout: 50 });
4040

test/sequential/test-tls-psk-client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const cleanUp = (err) => {
3333
process.exitCode = err ? 1 : 0;
3434
};
3535

36-
const timeout = setTimeout(() => cleanUp('Timeouted'), 5000);
36+
const timeout = setTimeout(() => cleanUp('Timed out'), 5000);
3737

3838
function waitForPort(port, cb) {
3939
const socket = net.connect(common.PORT, () => {

0 commit comments

Comments
 (0)