diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-06-07 09:07:22 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-06-07 09:07:22 +0800 |
commit | 2af6d3f6bc03932f53d199971694c3c0d9441ba8 (patch) | |
tree | b17f3343a635aa72a917b89f278f63924e25da3e /packages/dev-utils/test/blockchain_lifecycle_test.ts | |
parent | cbe5438a31a54a92a198b2cc5ad8a5d5feb033b4 (diff) | |
parent | 67c4ad128c405692e471274148c9a2ef7cd8b6ca (diff) | |
download | dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar.gz dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar.bz2 dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar.lz dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar.xz dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.tar.zst dexon-0x-contracts-2af6d3f6bc03932f53d199971694c3c0d9441ba8.zip |
Merge branch 'v2-prototype' of https://github.com/0xProject/0x-monorepo into feature/website/onboarding-flow-allowances
Diffstat (limited to 'packages/dev-utils/test/blockchain_lifecycle_test.ts')
-rw-r--r-- | packages/dev-utils/test/blockchain_lifecycle_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/dev-utils/test/blockchain_lifecycle_test.ts b/packages/dev-utils/test/blockchain_lifecycle_test.ts index 3d7d2e0ef..18e245aa3 100644 --- a/packages/dev-utils/test/blockchain_lifecycle_test.ts +++ b/packages/dev-utils/test/blockchain_lifecycle_test.ts @@ -1,6 +1,5 @@ import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as chai from 'chai'; -import { BlockParamLiteral } from 'ethereum-types'; import 'make-promises-safe'; import 'mocha'; @@ -18,6 +17,7 @@ describe('BlockchainLifecycle tests', () => { await blockchainLifecycle.startAsync(); await web3Wrapper.mineBlockAsync(); const blockNumberAfter = await web3Wrapper.getBlockNumberAsync(); + // tslint:disable-next-line:restrict-plus-operands expect(blockNumberAfter).to.be.equal(blockNumberBefore + 1); await blockchainLifecycle.revertAsync(); const blockNumberAfterRevert = await web3Wrapper.getBlockNumberAsync(); |