From 02f2234004fdc41092b090fd03e18d14bafd0466 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 10 Feb 2016 15:05:05 -0500 Subject: [PATCH] rm extra commas --- test/services/address/history.unit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/services/address/history.unit.js b/test/services/address/history.unit.js index 4c6306dd..2b6df06c 100644 --- a/test/services/address/history.unit.js +++ b/test/services/address/history.unit.js @@ -123,7 +123,7 @@ describe('Address Service History', function() { history.node.services.address.getAddressSummary.callCount.should.equal(1); history.node.services.address.getAddressSummary.args[0][0].should.equal(address); history.node.services.address.getAddressSummary.args[0][1].should.deep.equal({ - noBalance: true, + noBalance: true }); history._paginateWithDetails.callCount.should.equal(1); history._paginateWithDetails.args[0][0].should.equal(txids); @@ -157,7 +157,7 @@ describe('Address Service History', function() { history.node.services.address.getAddressSummary.args[0][0].should.equal(address); history.node.services.address.getAddressSummary.args[0][1].should.deep.equal({ fullTxList: true, - noBalance: true, + noBalance: true }); history._paginateWithDetails.callCount.should.equal(1); history._paginateWithDetails.args[0][0].should.equal(txids);