Skip to content

Commit

Permalink
fix: hard assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
fxp3 committed Apr 24, 2024
1 parent 9779874 commit c196a14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contracts/test/forked/MulticallUpdate.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ contract MulticallUpdate is Tested, ArbScript {
})
});
exec(0, ops, new bytes[](0));
krETH.balanceOf(sender).eq(994005248750000000, "krETH-bal");
krETH.balanceOf(sender).gt(0.95 ether, "krETH-bal");
krETH.balanceOf(sender).lt(1 ether, "krETH-bal");
}

function testSynthwraps() public pranked(sender) {
Expand Down

0 comments on commit c196a14

Please sign in to comment.