diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-23 00:50:02 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-23 00:50:02 +0800 |
commit | 1e03fbe1a8aba1c5a8b358272de81a09a201eec9 (patch) | |
tree | 18d75a8ffa1f741cc28f636cf2e636a857a8a410 /packages/contracts/test/libraries | |
parent | 4409f11b24324e23ee2f53436c0226028820e96d (diff) | |
download | dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar.gz dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar.bz2 dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar.lz dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar.xz dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.tar.zst dexon-sol-tools-1e03fbe1a8aba1c5a8b358272de81a09a201eec9.zip |
Fix prettier
Diffstat (limited to 'packages/contracts/test/libraries')
-rw-r--r-- | packages/contracts/test/libraries/lib_bytes.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/test/libraries/lib_bytes.ts b/packages/contracts/test/libraries/lib_bytes.ts index bc1856b40..7db0f60b5 100644 --- a/packages/contracts/test/libraries/lib_bytes.ts +++ b/packages/contracts/test/libraries/lib_bytes.ts @@ -112,7 +112,7 @@ describe('LibBytes', () => { it('should revert if length is less than 20', async () => { return expectRevertOrOtherErrorAsync( libBytes.publicPopLast20Bytes.callAsync(byteArrayShorterThan20Bytes), - RevertReasons.LibBytesGreaterOrEqualTo20LengthRequired + RevertReasons.LibBytesGreaterOrEqualTo20LengthRequired, ); }); it('should pop the last 20 bytes from the input and return it', async () => { @@ -173,7 +173,7 @@ describe('LibBytes', () => { it('should revert if dest is shorter than source', async () => { return expectRevertOrOtherErrorAsync( libBytes.publicDeepCopyBytes.callAsync(byteArrayShorterThan32Bytes, byteArrayLongerThan32Bytes), - RevertReasons.LibBytesGreaterOrEqualToSourceBytesLengthRequired + RevertReasons.LibBytesGreaterOrEqualToSourceBytesLengthRequired, ); }); it('should overwrite dest with source if source and dest have equal length', async () => { |