Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
Amxx committed Feb 12, 2024
commit 0cc39d82a2d5a2fa4f2302cbd76634c58788c8b7
7 changes: 1 addition & 6 deletions test/finance/VestingWalletCliff.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,7 @@ describe('VestingWallet', function () {

it('rejects a larger cliff than vesting duration', async function () {
await expect(
ethers.deployContract('$VestingWalletCliff', [
this.beneficiary,
this.start,
this.duration,
this.duration + 1n,
]),
ethers.deployContract('$VestingWalletCliff', [this.beneficiary, this.start, this.duration, this.duration + 1n]),
)
.revertedWithCustomError(this.mock, 'InvalidCliffDuration')
.withArgs(this.duration + 1n, this.duration);
Expand Down