diff options
Diffstat (limited to 'test/web3_trapper_test.ts')
-rw-r--r-- | test/web3_trapper_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web3_trapper_test.ts b/test/web3_trapper_test.ts index 69c04617b..1989bd4bc 100644 --- a/test/web3_trapper_test.ts +++ b/test/web3_trapper_test.ts @@ -14,13 +14,13 @@ describe('Web3Wrapper', () => { const web3Wrapper = (new ZeroEx(web3Provider) as any)._web3Wrapper as Web3Wrapper; expect((web3Wrapper as any).networkIdIfExists).to.be.undefined(); const networkId = await web3Wrapper.getNetworkIdIfExistsAsync(); - expect((web3Wrapper as any).networkIdIfExists).to.be.equal(constants.RPC_NETWORK_ID); + expect((web3Wrapper as any).networkIdIfExists).to.be.equal(constants.TESTRPC_NETWORK_ID); }); it('invalidates network id cache on setProvider call', async () => { const web3Wrapper = (new ZeroEx(web3Provider) as any)._web3Wrapper as Web3Wrapper; expect((web3Wrapper as any).networkIdIfExists).to.be.undefined(); const networkId = await web3Wrapper.getNetworkIdIfExistsAsync(); - expect((web3Wrapper as any).networkIdIfExists).to.be.equal(constants.RPC_NETWORK_ID); + expect((web3Wrapper as any).networkIdIfExists).to.be.equal(constants.TESTRPC_NETWORK_ID); const newProvider = web3Factory.create().currentProvider; web3Wrapper.setProvider(newProvider); expect((web3Wrapper as any).networkIdIfExists).to.be.undefined(); |