fix: remove stale TDD-red comment from BytesRead emission test

This commit is contained in:
Matthew Jackson
2026-06-24 00:50:21 -07:00
parent 48e95a7b2c
commit 7f195be894
+2 -3
View File
@@ -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] #[test]
fn test_bytes_read_emitted_during_disc_copy() { 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); let n = count.load(Ordering::Relaxed);
// EXPECTED TO FAIL until BytesRead emission is wired up. TDD red.
assert!( assert!(
n > 0, 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}"
); );
} }