We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87926a commit a34e195Copy full SHA for a34e195
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