Skip to content

Commit 13a0d1c

Browse files
committed
fix linter
1 parent 25a495d commit 13a0d1c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/parallel/test-dgram-fast.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ function testFastDgram() {
1313

1414
server.bind(0, common.mustCall(() => {
1515
client.connect(server.address().port, common.mustCall(() => {
16-
// Send some packets to queue them up (using --test-udp-no-try-send flag)
1716
client.send('Hello');
1817
client.send('World');
19-
18+
2019
assert.strictEqual(typeof client.getSendQueueSize(), 'number');
2120
assert.strictEqual(typeof client.getSendQueueCount(), 'number');
22-
21+
2322
client.close();
2423
server.close();
2524
}));

0 commit comments

Comments
 (0)