Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Nov 7, 2023
1 parent fc47a5f commit 9410aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Paymaster.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ contract PaymasterTest is Test {
UserOperation memory userOp = createUserOp();
signUserOp(userOp);

vm.expectRevert(createEncodedValidationResult(false, 57098));
vm.expectRevert(createEncodedValidationResult(false, 55014));
entrypoint.simulateValidation(userOp);
}

Expand All @@ -83,7 +83,7 @@ contract PaymasterTest is Test {
userOp.paymasterAndData = abi.encodePacked(address(paymaster), abi.encode(MOCK_VALID_UNTIL, MOCK_VALID_AFTER), r, s, v);
signUserOp(userOp);

vm.expectRevert(createEncodedValidationResult(true, 57104));
vm.expectRevert(createEncodedValidationResult(true, 55020));
entrypoint.simulateValidation(userOp);
}

Expand Down

0 comments on commit 9410aa4

Please sign in to comment.