Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
fix linting issues introduced by previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
dmzoneill committed Jul 14, 2018
1 parent 38af43b commit 05e3a31
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,14 +503,16 @@ describe('Candle sticks', function () {
describe('Object keys', function () {
describe('First', function () {
it('Gets the first key', function (done) {
let first = binance.first({ first: '1', second: '2', third: '3' }); assert.strictEqual('first', first, 'should be first');
let first = binance.first({ first: '1', second: '2', third: '3' });
assert.strictEqual('first', first, 'should be first');
done();
}).timeout(TIMEOUT);
});

describe('Last', function () {
it('Gets the last key', function (done) {
let last = binance.last({ first: '1', second: '2', third: '3' }); assert.strictEqual('third', last, 'should be third');
let last = binance.last({ first: '1', second: '2', third: '3' });
assert.strictEqual('third', last, 'should be third');
done();
}).timeout(TIMEOUT);
});
Expand Down

0 comments on commit 05e3a31

Please sign in to comment.