Skip to content

Commit

Permalink
fix base tests
Browse files Browse the repository at this point in the history
  • Loading branch information
a17 committed Oct 31, 2024
1 parent 792bf10 commit 8e17aa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/base/chains/BaseSetup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ abstract contract BaseSetup is ChainSetup, DeployCore {

constructor() {
vm.selectFork(vm.createFork(vm.envString("BASE_RPC_URL")));
// vm.rollFork(55000000);
vm.rollFork(21800000); // Oct-31-2024 03:42:27 PM +UTC
}

function testSetupStub() external {}
Expand Down
2 changes: 1 addition & 1 deletion test/core/Platform.Base.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ contract PlatformBaseTest is BaseSetup {
assertNotEq(token[i], address(0));
assertGt(tokenPrice[i], 0);
if (token[i] == BaseLib.TOKEN_USDC) {
assertEq(tokenUserBalance[i], 1e12);
assertGe(tokenUserBalance[i], 1e12);
} else {
assertEq(tokenUserBalance[i], 0);
}
Expand Down

0 comments on commit 8e17aa0

Please sign in to comment.