1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-13 10:02:24 +03:00

Add simicolons

This is just a style change
This commit is contained in:
Ruben Bridgewater
2015-07-22 16:19:02 +02:00
parent 1f9e536ca0
commit a2bc597212
8 changed files with 37 additions and 33 deletions

View File

@@ -11,12 +11,12 @@ module.exports = function (tests, next) {
q.push(3);
assert.equal(q.length, 2);
return next();
}
};
tests.shift = function () {
assert.equal(q.shift(), 'a');
return next();
}
};
tests.forEach = function () {
q.forEach(function (v) {
@@ -24,7 +24,7 @@ module.exports = function (tests, next) {
});
return next();
}
};
tests.forEachWithScope = function () {
q.forEach(function (v) {
@@ -33,5 +33,5 @@ module.exports = function (tests, next) {
}, {foo: 'bar'});
return next();
}
}
};
};