Commit bbfa7c06 authored by clabby's avatar clabby

Remove job output timeout for contracts-bedrock coverage / tests

parent a526d8ae
......@@ -306,7 +306,6 @@ jobs:
- run:
name: generate coverage report
command: yarn coverage:lcov
no_output_timeout: 18m
environment:
FOUNDRY_PROFILE: ci
working_directory: packages/contracts-bedrock
......@@ -336,7 +335,6 @@ jobs:
- run:
name: run tests
command: yarn test
no_output_timeout: 18m
environment:
FOUNDRY_PROFILE: ci
working_directory: packages/contracts-bedrock
......
......@@ -1045,12 +1045,6 @@ contract OptimismPortal_FinalizeWithdrawal_Test is Portal_Initializer {
vm.expectCallMinGas(_tx.target, _tx.value, uint64(_tx.gasLimit), _tx.data);
op.finalizeWithdrawalTransaction(_tx);
assertTrue(op.finalizedWithdrawals(withdrawalHash));
if (_tx.target == _tx.sender) {
assertEq(_tx.target.balance, targetBalanceBefore);
} else {
assertEq(_tx.target.balance, targetBalanceBefore + value);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment