Update contract-wrappers tests.

This commit is contained in:
Lawrence Forman 2019-03-26 19:17:39 -04:00 committed by Amir Bandeali
parent 94f5a039d2
commit 232a43f34f
2 changed files with 4 additions and 3 deletions

View File

@ -22,6 +22,7 @@ describe('ABI Decoding Calldata', () => {
const defaultERC20MakerAssetAddress = addressUtils.generatePseudoRandomAddress(); const defaultERC20MakerAssetAddress = addressUtils.generatePseudoRandomAddress();
const matchOrdersSignature = const matchOrdersSignature =
'matchOrders((address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes),(address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes),bytes,bytes)'; 'matchOrders((address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes),(address,address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,bytes,bytes),bytes,bytes)';
const chainId: number = constants.TESTRPC_NETWORK_ID;
let signedOrderLeft: SignedOrder; let signedOrderLeft: SignedOrder;
let signedOrderRight: SignedOrder; let signedOrderRight: SignedOrder;
let orderLeft = {}; let orderLeft = {};
@ -68,9 +69,9 @@ describe('ABI Decoding Calldata', () => {
salt: new BigNumber(50010), salt: new BigNumber(50010),
}; };
const orderFactoryLeft = new OrderFactory(privateKeyLeft, orderLeft); const orderFactoryLeft = new OrderFactory(privateKeyLeft, orderLeft);
signedOrderLeft = await orderFactoryLeft.newSignedOrderAsync({ exchangeAddress }); signedOrderLeft = await orderFactoryLeft.newSignedOrderAsync({ exchangeAddress, chainId });
const orderFactoryRight = new OrderFactory(privateKeyRight, orderRight); const orderFactoryRight = new OrderFactory(privateKeyRight, orderRight);
signedOrderRight = await orderFactoryRight.newSignedOrderAsync({ exchangeAddress }); signedOrderRight = await orderFactoryRight.newSignedOrderAsync({ exchangeAddress, chainId });
// Encode match orders transaction // Encode match orders transaction
contractAddresses = await migrateOnceAsync(); contractAddresses = await migrateOnceAsync();
await blockchainLifecycle.startAsync(); await blockchainLifecycle.startAsync();

View File

@ -476,7 +476,7 @@ describe('ExchangeWrapper', () => {
describe('#getVersionAsync', () => { describe('#getVersionAsync', () => {
it('should return version the hash', async () => { it('should return version the hash', async () => {
const version = await contractWrappers.exchange.getVersionAsync(); const version = await contractWrappers.exchange.getVersionAsync();
const VERSION = '2.0.0'; const VERSION = '3.0.0';
expect(version).to.be.equal(VERSION); expect(version).to.be.equal(VERSION);
}); });
}); });