Skip to content

Commit

Permalink
ci: reverse check order for addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMyrddin committed May 21, 2023
1 parent 3780988 commit 8c42f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/camelot-default.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('buildList', () => {

it('all addresses are valid and checksummed', () => {
for (let token of defaultTokenList.tokens) {
expect(getAddress(token.address)).to.eq(token.address);
expect(token.address).to.eq(getAddress(token.address));
}
});

Expand Down

0 comments on commit 8c42f91

Please sign in to comment.