diff options
-rw-r--r-- | test/0x.js.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/0x.js.ts b/test/0x.js.ts index 26e56a18b..2da026694 100644 --- a/test/0x.js.ts +++ b/test/0x.js.ts @@ -56,7 +56,7 @@ describe('ZeroEx library', () => { }); }); it('should return false if the data doesn\'t pertain to the signature & address', () => { - const isValid = ZeroEx.isValidSignature('wrong data', signature, address); + const isValid = ZeroEx.isValidSignature('0x00', signature, address); expect(isValid).to.be.false; }); it('should return false if the address doesn\'t pertain to the signature & data', () => { |