From f3c6f26f85f3ffac30be45d6e9a23234d618bba4 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Thu, 26 Mar 2020 11:12:05 -0400 Subject: [PATCH] `@0x/contracts-asset-proxy`: Fix typo in DFB tests. --- contracts/asset-proxy/test/dex_forwarder_bridge.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/asset-proxy/test/dex_forwarder_bridge.ts b/contracts/asset-proxy/test/dex_forwarder_bridge.ts index 96a7b770df..737710a969 100644 --- a/contracts/asset-proxy/test/dex_forwarder_bridge.ts +++ b/contracts/asset-proxy/test/dex_forwarder_bridge.ts @@ -25,14 +25,14 @@ import { const { ZERO_AMOUNT } = constants; -blockchainTests.resets('DexForwaderBridge unit tests', env => { +blockchainTests.resets('DexForwarderBridge unit tests', env => { let testContract: TestDexForwarderBridgeContract; let inputToken: string; let outputToken: string; const BRIDGE_SUCCESS = '0xdc1600f3'; const BRIDGE_FAILURE = '0xffffffff'; const BRIDGE_REVERT_ERROR = 'oopsie'; - const INCOMPLETE_FILL_REVERT = 'DexForwaderBridge/INCOMPLETE_FILL'; + const INCOMPLETE_FILL_REVERT = 'DexForwarderBridge/INCOMPLETE_FILL'; const DEFAULTS = { toAddress: randomAddress(), };