diff --git a/testing/ef_tests/src/cases/fork_choice.rs b/testing/ef_tests/src/cases/fork_choice.rs index 9efb7ada12..650452d783 100644 --- a/testing/ef_tests/src/cases/fork_choice.rs +++ b/testing/ef_tests/src/cases/fork_choice.rs @@ -156,13 +156,6 @@ impl Case for ForkChoiceTest { fn result(&self, _case_index: usize, fork_name: ForkName) -> Result<(), Error> { let tester = Tester::new(self, testing_spec::(fork_name))?; - // TODO(merge): re-enable this test before production. - // This test is skipped until we can do retrospective confirmations of the terminal - // block after an optimistic sync. - if self.description == "block_lookup_failed" { - return Err(Error::SkippedKnownFailure); - }; - for step in &self.steps { match step { Step::Tick { tick } => tester.set_tick(*tick),