Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
@0x/utils: Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
dorothy-zbornak committed Sep 1, 2020
1 parent 4b9867f commit 4381083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/test/revert_error_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ describe('RevertError', () => {
const nested = new StringRevertError(message);
const parent = new ParentRevertError(nested.encode());
const decoded = RevertError.decode(parent.encode());
expect(decoded.toString()).to.equal(new ParentRevertError(nested.toString()).toString());
expect(decoded.encode()).to.equal(new ParentRevertError(nested.encode()).encode());
});
});
describe('getThrownErrorRevertErrorBytes', () => {
Expand Down

0 comments on commit 4381083

Please sign in to comment.