diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/exchange_wrapper_test.ts | 6 | ||||
-rw-r--r-- | test/token_wrapper_test.ts | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 371f96954..afc33f1f4 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -21,7 +21,7 @@ import { OrderFillOrKillRequest, LogEvent, } from '../src'; -import {DoneCallback} from '../src/types'; +import {DoneCallback, BlockParamLiteral} from '../src/types'; import {FillScenarios} from './utils/fill_scenarios'; import {TokenUtils} from './utils/token_utils'; import {assert} from '../src/utils/assert'; @@ -752,8 +752,8 @@ describe('ExchangeWrapper', () => { const fillableAmount = new BigNumber(5); const shouldThrowOnInsufficientBalanceOrAllowance = true; const subscriptionOpts: SubscriptionOpts = { - fromBlock: 'earliest', - toBlock: 'latest', + fromBlock: BlockParamLiteral.Earliest, + toBlock: BlockParamLiteral.Latest, }; let txHash: string; before(async () => { diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts index 17f4ac875..50f2db2ac 100644 --- a/test/token_wrapper_test.ts +++ b/test/token_wrapper_test.ts @@ -19,7 +19,7 @@ import { } from '../src'; import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; import {TokenUtils} from './utils/token_utils'; -import {DoneCallback} from '../src/types'; +import {DoneCallback, BlockParamLiteral} from '../src/types'; chaiSetup.configure(); const expect = chai.expect; @@ -421,8 +421,8 @@ describe('TokenWrapper', () => { let tokenAddress: string; let tokenTransferProxyAddress: string; const subscriptionOpts: SubscriptionOpts = { - fromBlock: 'earliest', - toBlock: 'latest', + fromBlock: BlockParamLiteral.Earliest, + toBlock: BlockParamLiteral.Latest, }; let txHash: string; before(async () => { |