1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

Use type safe comparison

This commit is contained in:
Ruben Bridgewater
2015-07-22 16:43:01 +02:00
parent 0908e9a46b
commit 01a377383b
2 changed files with 7 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ before_lines.forEach(function(b, i) {
var isNaN = !num && num !== 0;
return !isNaN;
});
if (ops.length != 2) return;
if (ops.length !== 2) return;
var delta = ops[1] - ops[0];
var pct = ((delta / ops[0]) * 100).toPrecision(3);
@@ -60,7 +60,7 @@ before_lines.forEach(function(b, i) {
pct = humanize_diff(pct, '%');
console.log(
// name of test
command_name(a_words) == command_name(b_words)
command_name(a_words) === command_name(b_words)
? command_name(a_words) + ':'
: '404:',
// results of test

View File

@@ -204,7 +204,7 @@ tests.FLUSHDB = function () {
tests.INCR = function () {
var name = "INCR";
if (bclient.reply_parser.name == "hiredis") {
if (bclient.reply_parser.name === "hiredis") {
console.log("Skipping INCR buffer test with hiredis");
return next(name);
}
@@ -371,7 +371,7 @@ tests.MULTI_6 = function () {
tests.MULTI_7 = function () {
var name = "MULTI_7";
if (bclient.reply_parser.name != "javascript") {
if (bclient.reply_parser.name !== "javascript") {
console.log("Skipping wire-protocol test for 3rd-party parser");
return next(name);
}
@@ -467,7 +467,7 @@ tests.FWD_ERRORS_1 = function () {
client3.on("message", function (channel, data) {
console.log("incoming");
if (channel == name) {
if (channel === name) {
assert.equal(data, "Some message");
throw toThrow;
}
@@ -1286,11 +1286,11 @@ tests.SUBSCRIBE_CLOSE_RESUBSCRIBE = function () {
console.log("c1 is ready", count);
count++;
if (count == 1) {
if (count === 1) {
c2.publish("chan1", "hi on channel 1");
return;
} else if (count == 2) {
} else if (count === 2) {
c2.publish("chan2", "hi on channel 2");
} else {