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;