From a7aadc923aae8a1717963e99e8fa522eba6f504d Mon Sep 17 00:00:00 2001 From: Damian Mee Date: Thu, 4 Sep 2014 01:19:23 +0200 Subject: [PATCH] style(jshint): jshint compatibility increased --- test/mocks/db.js | 2 +- test/mocks/ticker.js | 2 +- test/mocks/wallet.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/mocks/db.js b/test/mocks/db.js index cfc875d6..61a71309 100644 --- a/test/mocks/db.js +++ b/test/mocks/db.js @@ -39,6 +39,6 @@ module.exports.resetCalls = function() { calls = { status: false, fail: false - } + }; }; module.exports.resetCalls(); diff --git a/test/mocks/ticker.js b/test/mocks/ticker.js index e4c64f5f..3a71c150 100644 --- a/test/mocks/ticker.js +++ b/test/mocks/ticker.js @@ -25,4 +25,4 @@ module.exports = { var tickerCalls = 0; module.exports.getTickerCalls = function() { return tickerCalls; -} +}; diff --git a/test/mocks/wallet.js b/test/mocks/wallet.js index c3d93968..289a7090 100644 --- a/test/mocks/wallet.js +++ b/test/mocks/wallet.js @@ -38,6 +38,6 @@ module.exports.getBalanceCalls = function() { }; module.exports.wasSendCalled = function() { return calls.send; -} +};