Skip to content

Commit 8b4eb3f

Browse files
committed
chore(protocol-contracts): fix test
1 parent 9e34108 commit 8b4eb3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

protocol-contracts/staking/test/OperatorRewarder.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ describe('OperatorRewarder', function () {
336336

337337
it('should revert if over 100%', async function () {
338338
await expect(this.mock.connect(this.admin).setMaxFee(10001))
339-
.to.be.revertedWithCustomError(this.mock, 'InvalidBasisPoints')
339+
.to.be.revertedWithCustomError(this.mock, 'MaxBasisPointsExceeded')
340340
.withArgs(10001);
341341
});
342342

0 commit comments

Comments
 (0)