summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-dns-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-net-dns-error.js')
-rw-r--r--test/parallel/test-net-dns-error.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-net-dns-error.js b/test/parallel/test-net-dns-error.js
index 0d943bf6cd..bb90eafc3d 100644
--- a/test/parallel/test-net-dns-error.js
+++ b/test/parallel/test-net-dns-error.js
@@ -25,7 +25,7 @@ const common = require('../common');
const assert = require('assert');
const net = require('net');
-const host = '*'.repeat(256);
+const host = '*'.repeat(64);
const errCode = common.isOpenBSD ? 'EAI_FAIL' : 'ENOTFOUND';
const socket = net.connect(42, host, common.mustNotCall());