diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-05-22 01:04:17 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-05-31 08:11:30 +0800 |
commit | 6d462fc961da2ba4d5502ad6b71654c1715550d9 (patch) | |
tree | ecdf0dcde1e42470d68f3c5c9ccb81bd7b23a522 /packages/contracts/test/libraries | |
parent | 4b71c65aea44bba34429e288c5411a090dd78071 (diff) | |
download | dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar.gz dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar.bz2 dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar.lz dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar.xz dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.tar.zst dexon-sol-tools-6d462fc961da2ba4d5502ad6b71654c1715550d9.zip |
Remove TxOrigin signature type, modify whitelist to use Validator signature type
Diffstat (limited to 'packages/contracts/test/libraries')
-rw-r--r-- | packages/contracts/test/libraries/lib_bytes.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/contracts/test/libraries/lib_bytes.ts b/packages/contracts/test/libraries/lib_bytes.ts index ac654e037..c85cee5e3 100644 --- a/packages/contracts/test/libraries/lib_bytes.ts +++ b/packages/contracts/test/libraries/lib_bytes.ts @@ -62,12 +62,11 @@ describe('LibBytes', () => { describe('deepCopyBytes', () => { const byteArrayLongerThan32BytesLen = (byteArrayLongerThan32Bytes.length - 2) / 2; - it('should throw if length of copy is 0', async () => { + it('should return a byte array of length 0 if len is 0', async () => { const index = new BigNumber(0); const len = new BigNumber(0); - return expect( - libBytes.publicDeepCopyBytes.callAsync(byteArrayLongerThan32Bytes, index, len), - ).to.be.rejectedWith(constants.REVERT); + const copy = await libBytes.publicDeepCopyBytes.callAsync(byteArrayLongerThan32Bytes, index, len); + expect(copy).to.equal(constants.NULL_BYTES); }); it('should throw if start index + length to copy is greater than length of byte array', async () => { |