Skip to content

Commit ac6c944

Browse files
committed
fix: test
1 parent 346c846 commit ac6c944

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@
176176

177177
[rpc_endpoints]
178178
mainnet = "${RPC_MAINNET}"
179-
holesky = "${RPC_HOLESKY}"
179+
base = "${RPC_BASE}"

src/test/integration/tests/CrosschainDeployLib.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ contract Integration_CrosschainDeployLibTest is IntegrationDeployer {
1717
vm.startPrank(deployer);
1818

1919
// Test empty contract deployment
20-
uint baseFork = vm.createSelectFork(vm.envString("RPC_BASE"), 37_783_655);
20+
uint baseFork = vm.createSelectFork(cheats.rpcUrl("base"), 37_783_655);
2121
address baseExpected = CrosschainDeployLib.deployEmptyContract(deployer);
22-
uint mainnetFork = vm.createSelectFork(vm.envString("RPC_MAINNET"), 22_819_288);
22+
uint mainnetFork = vm.createSelectFork(cheats.rpcUrl("mainnet"), 22_819_288);
2323
address mainnetExpected = CrosschainDeployLib.deployEmptyContract(deployer);
2424
assertEq(baseExpected, mainnetExpected, "baseExpected != mainnetExpected");
2525

0 commit comments

Comments
 (0)