You've already forked node-redis
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:
@@ -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();
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user