Browse Source

fix small test issue

feat/estimateFee-limit
Ivan Socolsky 8 years ago
parent
commit
b856d1cb02
No known key found for this signature in database GPG Key ID: FAECE6A05FAA4F56
  1. 2
      test/integration/server.js

2
test/integration/server.js

@ -1311,7 +1311,7 @@ describe('Wallet service', function() {
var MAX_MAIN_ADDRESS_GAP_old = Defaults.MAX_MAIN_ADDRESS_GAP;
Defaults.MAX_MAIN_ADDRESS_GAP = 2;
helpers.stubAddressActivity([]);
async.map(_.range(2), function(i, next) {
async.mapSeries(_.range(2), function(i, next) {
server.createAddress({}, next);
}, function(err, addresses) {
addresses.length.should.equal(2);

Loading…
Cancel
Save