From 35daecd5aed5a890133a2efbfffebc879d1eb34c Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Mon, 30 Sep 2019 17:13:15 -0700 Subject: [PATCH] `@0x/contracts-asset-proxy`: Rebase and use `@0x/types.AssetProxyId`. --- contracts/asset-proxy/test/eth2dai_bridge.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/asset-proxy/test/eth2dai_bridge.ts b/contracts/asset-proxy/test/eth2dai_bridge.ts index ff851451ea..c8411595a6 100644 --- a/contracts/asset-proxy/test/eth2dai_bridge.ts +++ b/contracts/asset-proxy/test/eth2dai_bridge.ts @@ -10,6 +10,7 @@ import { randomAddress, TransactionHelper, } from '@0x/contracts-test-utils'; +import { AssetProxyId } from '@0x/types'; import { BigNumber } from '@0x/utils'; import { DecodedLogs } from 'ethereum-types'; import * as _ from 'lodash'; @@ -123,7 +124,7 @@ blockchainTests.resets.only('Eth2DaiBridge unit tests', env => { } it('returns magic bytes on success', async () => { - const BRIDGE_SUCCESS_RETURN_DATA = '0xdc1600f3'; + const BRIDGE_SUCCESS_RETURN_DATA = AssetProxyId.ERC20Bridge; const { result } = await withdrawToAsync(); expect(result).to.eq(BRIDGE_SUCCESS_RETURN_DATA); });