Skip to content

Commit

Permalink
fix: wrong phase test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xShaito committed Oct 23, 2024
1 parent 679c9c3 commit 7cf7b75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ contract PrivateERC20ResolutionModule_Unit_ResolveDispute is BaseTest {
// Jump to timestamp
vm.warp(_timestamp);

if (_timestamp < 500_000) {
if (_timestamp <= 500_000) {
// Check: does it revert if trying to resolve during the committing phase?
vm.expectRevert(IPrivateERC20ResolutionModule.PrivateERC20ResolutionModule_OnGoingCommittingPhase.selector);
vm.prank(address(oracle));
Expand Down

0 comments on commit 7cf7b75

Please sign in to comment.