Skip to content

Commit 9439ebb

Browse files
committed
test: remove deal statements
1 parent 8f8f7f1 commit 9439ebb

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

tests/fork/merkle-campaign/MerkleBase.t.sol

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ abstract contract MerkleBase_Fork_Test is Fork_Test {
9999

100100
// Make the recipient as the caller.
101101
setMsgSender(vars.leafToClaim.recipient);
102-
deal(vars.leafToClaim.recipient, 1 ether);
103102

104103
assertFalse(merkleBase.hasClaimed(vars.leafToClaim.index));
105104

tests/integration/concrete/campaign/shared/claim-to/claimTo.t.sol

-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ abstract contract ClaimTo_Integration_Test is Integration_Test {
7878
givenCallerNotClaimed
7979
whenIndexValid
8080
{
81-
vm.deal(address(1337), MIN_FEE_WEI);
82-
8381
setMsgSender(address(1337));
8482

8583
vm.expectRevert(Errors.SablierMerkleBase_InvalidProof.selector);

tests/integration/fuzz/Fuzz.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ contract Shared_Fuzz_Test is Integration_Test {
5757
}
5858

5959
// Bound `msgValue` so that it's >= min USD fee.
60-
msgValue = bound(msgValue, merkleBase.calculateMinFeeWei(), 100 ether);
60+
msgValue = bound(msgValue, merkleBase.calculateMinFeeWei(), 1 ether);
6161

6262
// If the claim amount for VCA airdrops is zero, skip this claim.
6363
if (merkleBase == merkleVCA && merkleVCA.calculateClaimAmount(leafData.amount, getBlockTimestamp()) == 0) {

0 commit comments

Comments
 (0)