From 1cdc6e7184c88a84b06548fab2983c1cc32c3802 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Tue, 1 Sep 2020 16:56:32 -0400 Subject: [PATCH] `@0x/contracts-integrations`: Remove stray `only` modifier. --- contracts/integrations/test/exchange-proxy/mtx_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/integrations/test/exchange-proxy/mtx_test.ts b/contracts/integrations/test/exchange-proxy/mtx_test.ts index d62037945c..7a78c8a952 100644 --- a/contracts/integrations/test/exchange-proxy/mtx_test.ts +++ b/contracts/integrations/test/exchange-proxy/mtx_test.ts @@ -25,7 +25,7 @@ import * as ethjs from 'ethereumjs-util'; const { MAX_UINT256, NULL_ADDRESS, NULL_BYTES, NULL_BYTES32, ZERO_AMOUNT } = constants; -blockchainTests.resets.only('exchange proxy - meta-transactions', env => { +blockchainTests.resets('exchange proxy - meta-transactions', env => { const quoteSignerKey = hexUtils.random(); const quoteSigner = hexUtils.toHex(ethjs.privateToAddress(ethjs.toBuffer(quoteSignerKey))); let owner: string;