Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Cohen committed Sep 3, 2015
1 parent 271aba4 commit 19ed453
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/unit/create-payment-tx-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ suite('unit - createPaymentTransaction', function() {
destinationAccount: addresses.COUNTERPARTY,
sourceIssuer: '',
destinationIssuer: addresses.ISSUER
}));
}));
assert.strictEqual(transaction.tx_json.SendMax, '10000000');
});

Expand Down
5 changes: 3 additions & 2 deletions test/unit/fixtures/rest-converter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-disable new-cap */
/* eslint-disable max-len */
/* eslint-disable no-param-reassign */
'use strict';

var _ = require('lodash');
Expand Down Expand Up @@ -148,8 +149,8 @@ module.exports.exportsPaymentRestIssuers = function(options) {
source_tag: '',
source_amount: {
value: options.sourceValue,
currency: options.sourceCurrency,
issuer: options.sourceIssuer
currency: options.sourceCurrency,
issuer: options.sourceIssuer
},
source_slippage: options.sourceSlippage,
destination_account: options.destinationAccount,
Expand Down

0 comments on commit 19ed453

Please sign in to comment.