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

Increase the coverage

This commit is contained in:
Ruben Bridgewater
2015-09-13 02:21:21 +02:00
parent 8fa5b93c93
commit 06121a65c4
3 changed files with 4 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ describe("The 'get' method", function () {
});
it("gets the value correctly", function (done) {
client.GET(key, redis.print); // Use the utility function to print the result
client.GET(key, function (err, res) {
helper.isString(value)(err, res);
done(err);