Skip to content

Commit 75fcebd

Browse files
apollo_integration_tests: clean old todos (#11502)
1 parent f863ce6 commit 75fcebd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/apollo_integration_tests/tests/common/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Each test module is compiled as a separate crate, and all can declare the common module.
22
// This means that any peace of code in this module that is not used by *all* test modules will be
33
// identified as unused code by clippy (for one of the crates).
4+
// TODO(Arni): Fix this.
45
#![allow(dead_code)]
56

67
use std::time::Duration;
@@ -203,7 +204,7 @@ fn assert_full_blocks_flow(recorder_handle: &PrometheusHandle, expecting_full_bl
203204
}
204205
// Just because we don't expect full blocks, doesn't mean we should assert that the metric is 0.
205206
// It is possible that a block is filled, no need to assert that this is not the case.
206-
// TODO(AlonH): In the `else` case, assert that some block closed due to time.
207+
// TODO(Arni): In the `else` case, assert that some block closed due to time.
207208
}
208209

209210
fn assert_on_number_of_reverted_transactions_flow(

crates/apollo_integration_tests/tests/end_to_end_flow_test.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ fn create_test_scenarios() -> Vec<TestScenario> {
3131
vec![
3232
// This block should be the first to be tested, as the addition of L1 handler transaction
3333
// does not work smoothly with the current architecture of the test.
34-
// TODO(Arni): Fix this. Move the L1 handler to be not the first block.
3534
TestScenario {
3635
create_rpc_txs_fn: |_| vec![],
3736
create_l1_to_l2_messages_args_fn: create_l1_to_l2_message_args,

0 commit comments

Comments
 (0)