Fix test that was passing an invalid address (now caught by our assertions), to instead pass a valid but unrelated address as the test name suggests

This commit is contained in:
Fabio Berger 2017-05-25 11:00:20 +02:00
parent 755c980a56
commit d23dbf53fd

View File

@ -59,7 +59,8 @@ describe('ZeroEx library', () => {
expect(isValid).to.be.false; expect(isValid).to.be.false;
}); });
it('should return false if the address doesn\'t pertain to the signature & data', () => { it('should return false if the address doesn\'t pertain to the signature & data', () => {
const isValid = ZeroEx.isValidSignature(data, signature, '0xIamWrong'); const validUnrelatedAddress = '0x8b0292B11a196601eD2ce54B665CaFEca0347D42';
const isValid = ZeroEx.isValidSignature(data, signature, validUnrelatedAddress);
expect(isValid).to.be.false; expect(isValid).to.be.false;
}); });
it('should return false if the signature doesn\'t pertain to the data & address', () => { it('should return false if the signature doesn\'t pertain to the data & address', () => {