We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5b211 commit 8c15281Copy full SHA for 8c15281
test/parallel/test-http2-client-destroy.js
@@ -22,7 +22,7 @@ const { getEventListeners } = require('events');
22
server.close();
23
});
24
25
- destroyCallbacks.forEach((destroyCallback) => {
+ for (const destroyCallback of destroyCallbacks) {
26
const client = h2.connect(`http://localhost:${server.address().port}`);
27
client.on('connect', common.mustCall(() => {
28
const socket = client[kSocket];
@@ -45,7 +45,7 @@ const { getEventListeners } = require('events');
45
46
countdown.dec();
47
}));
48
- });
+ }
49
50
}
51
0 commit comments