aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-07-27 05:32:52 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-08-09 05:27:30 +0800
commit6a6739ebbec291b61226c047fde7b3d0bb4a7250 (patch)
tree4f46c2cd8c14b972497134a7e7342d0a28c0b407 /packages/0x.js
parent6a5965d73bb542634631d7af76c150795d899744 (diff)
downloaddexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar.gz
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar.bz2
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar.lz
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar.xz
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.tar.zst
dexon-sol-tools-6a6739ebbec291b61226c047fde7b3d0bb4a7250.zip
Apply prettier
Diffstat (limited to 'packages/0x.js')
-rw-r--r--packages/0x.js/test/0x.js_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/0x.js/test/0x.js_test.ts b/packages/0x.js/test/0x.js_test.ts
index 2c1cb2c74..be2a94482 100644
--- a/packages/0x.js/test/0x.js_test.ts
+++ b/packages/0x.js/test/0x.js_test.ts
@@ -50,9 +50,9 @@ describe('ZeroEx library', () => {
const address = '0x5409ed021d9299bf6814279a6a1411a7e866a631';
const bytes32Zeros = '0x0000000000000000000000000000000000000000000000000000000000000000';
it("should return false if the data doesn't pertain to the signature & address", async () => {
- return expect((zeroEx.exchange as any).isValidSignatureAsync(bytes32Zeros, address, ethSignSignature)).to.become(
- false,
- );
+ return expect(
+ (zeroEx.exchange as any).isValidSignatureAsync(bytes32Zeros, address, ethSignSignature),
+ ).to.become(false);
});
it("should return false if the address doesn't pertain to the signature & data", async () => {
const validUnrelatedAddress = '0x8b0292b11a196601ed2ce54b665cafeca0347d42';