Skip to content

Commit

Permalink
get rid of nonfuzz test in fuzz file
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaanshK committed Jul 1, 2024
1 parent 5868a5c commit 2fd121c
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ contract TestFuzz_SponsorshipPaymasterWithPremium is NexusTestBase {
);
}

function test_CheckInitialPaymasterState() external {
assertEq(bicoPaymaster.owner(), PAYMASTER_OWNER.addr);
assertEq(address(bicoPaymaster.entryPoint()), ENTRYPOINT_ADDRESS);
assertEq(bicoPaymaster.verifyingSigner(), PAYMASTER_SIGNER.addr);
assertEq(bicoPaymaster.feeCollector(), PAYMASTER_FEE_COLLECTOR.addr);
}

function testFuzz_DepositFor(uint256 depositAmount) external {
vm.assume(depositAmount <= 1000 ether);
vm.assume(depositAmount > 0 ether);
Expand Down

0 comments on commit 2fd121c

Please sign in to comment.