summaryrefslogtreecommitdiff
path: root/test/parallel/test-dgram-send-multi-buffer-copy.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-dgram-send-multi-buffer-copy.js')
-rw-r--r--test/parallel/test-dgram-send-multi-buffer-copy.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/parallel/test-dgram-send-multi-buffer-copy.js b/test/parallel/test-dgram-send-multi-buffer-copy.js
index 19222dac5f..0b7f003335 100644
--- a/test/parallel/test-dgram-send-multi-buffer-copy.js
+++ b/test/parallel/test-dgram-send-multi-buffer-copy.js
@@ -6,13 +6,8 @@ const dgram = require('dgram');
const client = dgram.createSocket('udp4');
-const timer = setTimeout(function() {
- throw new Error('Timeout');
-}, common.platformTimeout(200));
-
const onMessage = common.mustCall(function(err, bytes) {
assert.equal(bytes, buf1.length + buf2.length);
- clearTimeout(timer);
});
const buf1 = Buffer.alloc(256, 'x');