Ran prettier.

This commit is contained in:
Lawrence 2019-03-20 10:58:25 -04:00
parent 6ed1412bdd
commit 4b2488b124

View File

@ -93,9 +93,7 @@ describe('LibAddressArray', () => {
addr,
);
// The new location should be the end of the old array + freeMemOffset.
const expectedNewArrayMemStart = oldArrayMemStart
.plus((arr.length + 1) * 32)
.plus(freeMemOffset);
const expectedNewArrayMemStart = oldArrayMemStart.plus((arr.length + 1) * 32).plus(freeMemOffset);
expect(result).to.deep.equal(expectedArray);
expect(newArrayMemStart).bignumber.to.be.equal(expectedNewArrayMemStart);
});