Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
simonswain committed Jul 24, 2016
1 parent 6913da0 commit 82f1419
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/runner_test.js
Expand Up @@ -38,7 +38,7 @@ exports['runner'] = {
function(err, pid) {
//console.log('PID', pid);
runner.quit(function(){
test.done();
test.done();
});
});
},
Expand All @@ -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]);
Expand All @@ -91,5 +91,5 @@ exports['runner'] = {
});
});
}

};

0 comments on commit 82f1419

Please sign in to comment.