diff --git a/test/parallel/test-dns-regress-6244.js b/test/internet/test-dns-regress-6244.js similarity index 90% rename from test/parallel/test-dns-regress-6244.js rename to test/internet/test-dns-regress-6244.js index 957d3cb672e1d3..8b10e4d7ef9008 100644 --- a/test/parallel/test-dns-regress-6244.js +++ b/test/internet/test-dns-regress-6244.js @@ -23,5 +23,6 @@ const common = require('../common'); const dns = require('dns'); -// Should not segfault, see #6244. -dns.resolve4('127.0.0.1', common.mustCall(() => { })); +// Should not segfault. +// Ref: https://github.com/nodejs/node-v0.x-archive/issues/6244 +dns.resolve4('127.0.0.1', common.mustCall());