From 2bb9b9a8f7e2f07d3f66db4d9a2ec0f0bc255473 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Thu, 19 Sep 2019 06:15:25 -0400 Subject: [PATCH] `@0x/contracts-test-utils`: Ran prettier. --- contracts/test-utils/src/hex_utils.ts | 2 +- contracts/test-utils/src/index.ts | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/contracts/test-utils/src/hex_utils.ts b/contracts/test-utils/src/hex_utils.ts index 007bbf9bd5..ad78e592e0 100644 --- a/contracts/test-utils/src/hex_utils.ts +++ b/contracts/test-utils/src/hex_utils.ts @@ -63,7 +63,7 @@ export function hexSlice(n: Numberish, start: number, end?: number): string { */ export function hexHash(n: Numberish): string { return ethUtil.bufferToHex(ethUtil.sha3(ethUtil.toBuffer(toHex(n)))); - } +} /** * Convert a string, a number, or a BigNumber into a hex string. diff --git a/contracts/test-utils/src/index.ts b/contracts/test-utils/src/index.ts index bdac824e23..4b13e555e1 100644 --- a/contracts/test-utils/src/index.ts +++ b/contracts/test-utils/src/index.ts @@ -28,16 +28,7 @@ export { bytes32Values, testCombinatoriallyWithReferenceFunc, uint256Values } fr export { TransactionFactory } from './transaction_factory'; export { MutatorContractFunction, TransactionHelper } from './transaction_helper'; export { testWithReferenceFuncAsync } from './test_with_reference'; -export { - hexConcat, - hexHash, - hexLeftPad, - hexInvert, - hexSlice, - hexRandom, - hexRightPad, - toHex, -} from './hex_utils'; +export { hexConcat, hexHash, hexLeftPad, hexInvert, hexSlice, hexRandom, hexRightPad, toHex } from './hex_utils'; export { BatchMatchOrder, ContractName,