Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cf7bf27

Browse filesBrowse files
pothamcodebytere
authored andcommitted
test: replace callback functions with arrow functions
PR-URL: #24432 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 518bc96 commit cf7bf27
Copy full SHA for cf7bf27

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎test/parallel/test-http-client-timeout-option-with-agent.js‎

Copy file name to clipboardExpand all lines: test/parallel/test-http-client-timeout-option-with-agent.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const server = http.createServer(() => {
2424
// Never respond.
2525
});
2626

27-
server.listen(0, options.host, function() {
27+
server.listen(0, options.host, () => {
2828
doRequest();
2929
});
3030

@@ -50,7 +50,7 @@ function doRequest() {
5050
}));
5151
req.end();
5252

53-
setTimeout(function() {
53+
setTimeout(() => {
5454
req.destroy();
5555
assert.strictEqual(timeout_events, 1);
5656
// Ensure the `timeout` event fired only once.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.