8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b974b4 commit 80a7527Copy full SHA for 80a7527
test/parallel/test-dgram-exclusive-implicit-bind.js
@@ -45,7 +45,7 @@ if (cluster.isMaster) {
45
var ports = {};
46
47
process.on('exit', function() {
48
- assert.equal(pass, true);
+ assert.strictEqual(pass, true);
49
});
50
51
var target = dgram.createSocket('udp4');
@@ -55,12 +55,12 @@ if (cluster.isMaster) {
55
ports[rinfo.port] = true;
56
57
if (common.isWindows && messages === 2) {
58
- assert.equal(Object.keys(ports).length, 2);
+ assert.strictEqual(Object.keys(ports).length, 2);
59
done();
60
}
61
62
if (!common.isWindows && messages === 4) {
63
- assert.equal(Object.keys(ports).length, 3);
+ assert.strictEqual(Object.keys(ports).length, 3);
64
65
66
0 commit comments