Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
flowencygit committed Mar 4, 2019
1 parent c1d2cf9 commit 86f8eea
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions test/integration/fiatrateservice.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,34 +343,34 @@ describe('Fiat rate service', function () {
it('should fetch all rates from all ows', function (done) {
const clock = sinon.useFakeTimers(100, 'Date');
const owsBTC = [{
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars",
"rate": "120.00"
symbol: '$',
name: 'US Dollar',
symbol_native: '$',
decimal_digits: 2,
rounding: 0,
code: 'USD',
name_plural: 'US dollars',
rate: '120.00'
}];
const owsBCH = [{
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars",
"rate": "130.00"
symbol: '$',
name: 'US Dollar',
symbol_native: '$',
decimal_digits: 2,
rounding: 0,
code: 'USD',
name_plural: 'US dollars',
rate: '130.00'
}];
const owsLTC = [{
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars",
"rate": "140.00"
symbol: '$',
name: 'US Dollar',
symbol_native: '$',
decimal_digits: 2,
rounding: 0,
code: 'USD',
name_plural: 'US dollars',
rate: '140.00'
}];

request.get.withArgs({
Expand Down

0 comments on commit 86f8eea

Please sign in to comment.