From 7f195be8948062f1dbf79ef5d566daf1fb42bf95 Mon Sep 17 00:00:00 2001 From: Matthew Jackson <1085847+MattJackson@users.noreply.github.com> Date: Wed, 24 Jun 2026 00:50:21 -0700 Subject: [PATCH] fix: remove stale TDD-red comment from BytesRead emission test --- tests/integration_progress_and_halt.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/integration_progress_and_halt.rs b/tests/integration_progress_and_halt.rs index 8bcb838..81a49ea 100644 --- a/tests/integration_progress_and_halt.rs +++ b/tests/integration_progress_and_halt.rs @@ -127,7 +127,7 @@ fn synthetic_title(sector_count: u32) -> DiscTitle { } } -// ── 1. BytesRead events emitted during disc copy (TDD red) ──────────────── +// ── 1. BytesRead events emitted during disc copy ────────────────────────── #[test] fn test_bytes_read_emitted_during_disc_copy() { @@ -157,10 +157,9 @@ fn test_bytes_read_emitted_during_disc_copy() { } let n = count.load(Ordering::Relaxed); - // EXPECTED TO FAIL until BytesRead emission is wired up. TDD red. assert!( n > 0, - "expected at least one BytesRead event, got {n} (lib does not yet emit BytesRead)" + "expected at least one BytesRead event during disc copy, got {n}" ); }