diff --git a/solidity/ts/tests/peripherals.test.ts b/solidity/ts/tests/peripherals.test.ts index a82b981..445f549 100644 --- a/solidity/ts/tests/peripherals.test.ts +++ b/solidity/ts/tests/peripherals.test.ts @@ -201,7 +201,6 @@ describe('Peripherals Contract Test Suite', () => { const partialWindow = getAnvilWindowEthereum() const partialClient = createWriteClient(partialWindow, TEST_ADDRESSES[0], 0) await partialWindow.resetToCleanState() - await partialWindow.setTime(1n) await setupTestAccounts(partialWindow) await ensureProxyDeployerDeployed(partialClient) await ensureDeploymentStatusOracleDeployed(partialClient) diff --git a/solidity/ts/testsuite/simulator/useIsolatedAnvilNode.ts b/solidity/ts/testsuite/simulator/useIsolatedAnvilNode.ts index 505b4a9..7d7e513 100644 --- a/solidity/ts/testsuite/simulator/useIsolatedAnvilNode.ts +++ b/solidity/ts/testsuite/simulator/useIsolatedAnvilNode.ts @@ -165,7 +165,6 @@ export const useIsolatedAnvilNode = () => { try { await waitForRpcReady(connectionMode.rpcUrl) anvilWindowEthereum = await getMockedEthSimulateWindowEthereum(connectionMode.rpcUrl) - await anvilWindowEthereum.setTime(TEST_CHAIN_START_TIMESTAMP) await anvilWindowEthereum.setNextBlockBaseFeePerGasToZero() snapshotId = await anvilWindowEthereum.anvilSnapshot() } catch (error) {