From 6ac9e11245d957b6f25eb1d859634a0cfb4b6e25 Mon Sep 17 00:00:00 2001 From: askeluv Date: Tue, 26 Feb 2019 11:46:21 +0800 Subject: [PATCH] Linting --- .../test/fixtures/etherscan/api_v1_accounts_transactions.ts | 2 +- packages/pipeline/test/parsers/etherscan/index_test.ts | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/pipeline/test/fixtures/etherscan/api_v1_accounts_transactions.ts b/packages/pipeline/test/fixtures/etherscan/api_v1_accounts_transactions.ts index f191b40b63..95a81d8833 100644 --- a/packages/pipeline/test/fixtures/etherscan/api_v1_accounts_transactions.ts +++ b/packages/pipeline/test/fixtures/etherscan/api_v1_accounts_transactions.ts @@ -25,6 +25,6 @@ const ParsedEtherscanTransactions: EtherscanTransaction[] = [ cumulativeGasUsed: new BigNumber('6068925'), gasUsed: new BigNumber('6005925'), confirmations: new BigNumber('996941'), - } + }, ]; export { ParsedEtherscanTransactions }; diff --git a/packages/pipeline/test/parsers/etherscan/index_test.ts b/packages/pipeline/test/parsers/etherscan/index_test.ts index 172464971c..8c021299a1 100644 --- a/packages/pipeline/test/parsers/etherscan/index_test.ts +++ b/packages/pipeline/test/parsers/etherscan/index_test.ts @@ -1,14 +1,12 @@ -import { BigNumber } from '@0x/utils'; import * as chai from 'chai'; import 'mocha'; -import { EtherscanResponse, EtherscanTransactionResponse } from '../../../src/data_sources/etherscan'; -import { EtherscanTransaction } from '../../../src/entities'; +import { EtherscanResponse } from '../../../src/data_sources/etherscan'; import { parseEtherscanTransactions } from '../../../src/parsers/etherscan'; import { chaiSetup } from '../../utils/chai_setup'; -import * as etherscanResponse from '../../fixtures/etherscan/api_v1_accounts_transactions.json'; import { ParsedEtherscanTransactions } from '../../fixtures/etherscan/api_v1_accounts_transactions'; +import * as etherscanResponse from '../../fixtures/etherscan/api_v1_accounts_transactions.json'; chaiSetup.configure(); const expect = chai.expect;