From 82f1419c253bcb350e49b6bb5674813a31905560 Mon Sep 17 00:00:00 2001 From: Simon Swain Date: Sun, 24 Jul 2016 13:34:10 +1000 Subject: [PATCH] Format --- test/runner_test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/runner_test.js b/test/runner_test.js index e41582e..1d96735 100755 --- a/test/runner_test.js +++ b/test/runner_test.js @@ -38,7 +38,7 @@ exports['runner'] = { function(err, pid) { //console.log('PID', pid); runner.quit(function(){ - test.done(); + test.done(); }); }); }, @@ -64,16 +64,16 @@ exports['runner'] = { var redisFromNode = redis.createClient(); var finished = function(){ - runner.quit(function(){ + runner.quit(function(){ redisFromNode.quit(); - test.done(); + test.done(); }); }; var brpop = function(){ var lkeys = [pipe, 5]; redisFromNode.brpop( - lkeys, + lkeys, function(err, reply){ test.equal(reply[0], pipe); var msg = JSON.parse(reply[1]); @@ -91,5 +91,5 @@ exports['runner'] = { }); }); } - + };