From 9cc8933eec5337706627f5503f0b397f90db4444 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Fri, 24 May 2019 13:26:31 -0400 Subject: [PATCH] `@0x/contracs-test-utils`: Increase number of deployed ERC721 and ERC1155 tokens to 2 to fix broken `asset-proxy` tests. --- contracts/test-utils/src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/test-utils/src/constants.ts b/contracts/test-utils/src/constants.ts index 2a99969e9d..a46e562927 100644 --- a/contracts/test-utils/src/constants.ts +++ b/contracts/test-utils/src/constants.ts @@ -36,9 +36,9 @@ export const constants = { DUMMY_TOKEN_TOTAL_SUPPLY: new BigNumber(0), NULL_BYTES: '0x', NUM_DUMMY_ERC20_TO_DEPLOY: 4, - NUM_DUMMY_ERC721_TO_DEPLOY: 1, + NUM_DUMMY_ERC721_TO_DEPLOY: 2, NUM_ERC721_TOKENS_TO_MINT: 4, - NUM_DUMMY_ERC1155_CONTRACTS_TO_DEPLOY: 1, + NUM_DUMMY_ERC1155_CONTRACTS_TO_DEPLOY: 2, NUM_ERC1155_FUNGIBLE_TOKENS_MINT: 4, NUM_ERC1155_NONFUNGIBLE_TOKENS_MINT: 4, NULL_ADDRESS: '0x0000000000000000000000000000000000000000',