test: refactor test-net-dns-custom-lookup
Use asssert.strictEqual to disallow coersion. PR-URL: https://github.com/nodejs/node/pull/10071 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
a6ddd57f29
commit
5324a5739a
@ -18,9 +18,9 @@ function check(addressType, cb) {
|
||||
family: addressType,
|
||||
lookup: lookup
|
||||
}).on('lookup', common.mustCall(function(err, ip, type) {
|
||||
assert.equal(err, null);
|
||||
assert.equal(address, ip);
|
||||
assert.equal(type, addressType);
|
||||
assert.strictEqual(err, null);
|
||||
assert.strictEqual(address, ip);
|
||||
assert.strictEqual(type, addressType);
|
||||
}));
|
||||
}));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user