Skip to content

Commit 2d8d6c5

Browse files
niyashiyastargos
authored andcommitted
test: replace forEach with for..of in test-http2-server
PR-URL: #49819 Reviewed-By: Luigi Pinca <[email protected]>
1 parent af31d51 commit 2d8d6c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-http2-server-shutdown-options-errors.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const types = [
1919
server.on('stream', common.mustCall((stream) => {
2020
const session = stream.session;
2121

22-
types.forEach((input) => {
22+
for (const input of types) {
2323
const received = common.invalidArgTypeHelper(input);
2424
assert.throws(
2525
() => session.goaway(input),
@@ -48,7 +48,7 @@ server.on('stream', common.mustCall((stream) => {
4848
`TypedArray, or DataView.${received}`
4949
}
5050
);
51-
});
51+
}
5252

5353
stream.session.destroy();
5454
}));

0 commit comments

Comments
 (0)