Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rotorsoft committed Dec 2, 2024
1 parent 6cd968e commit 600e182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/model/test/contest/check-contests.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ describe('Check Contests', () => {

// vote should have been cast
expect(voteContentStub).toHaveBeenCalled();
const [_, addr] = voteContentStub.mock.calls[0];
const [, addr] = voteContentStub.mock.calls[0];
expect(addr.startsWith('0x'), 'using valid wallet address').to.be.true;
expect(addr).has.length(42, 'using valid wallet address');
});
Expand Down

0 comments on commit 600e182

Please sign in to comment.