Skip to content

Commit 3781295

Browse files
wolfieschclaude
andcommitted
fix(test): remove stale histogram assertions after section removal
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bd11eae commit 3781295

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

tests/test_results_html_dashboard.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ def test_render_html_dashboard_smoke(tmp_path: Path) -> None:
2121
html = out.read_text()
2222
assert "<title>ExcelBench Dashboard</title>" in html
2323
assert "<script>" in html
24-
# Radar and histogram sections present
24+
# Radar section present
2525
assert 'id="radar"' in html
26-
assert 'id="histogram"' in html
2726
assert "Strength Profiles" in html
28-
assert "Score Distribution" in html
2927

3028

3129
def test_render_html_dashboard_works_without_perf_or_svgs(tmp_path: Path) -> None:
@@ -68,7 +66,6 @@ def test_render_html_dashboard_works_without_perf_or_svgs(tmp_path: Path) -> Non
6866
assert "pyumya" not in html
6967
# Radar should still render (speed axes = 0 without perf data)
7068
assert 'id="radar"' in html
71-
assert 'id="histogram"' in html
7269

7370

7471
def test_compute_radar_data_uses_p50_when_op_count_missing() -> None:

0 commit comments

Comments
 (0)