Skip to content

Commit 7ceb99c

Browse files
jucorclaude
andcommitted
Fix: Clojure tests do not require golden_snapshot
Clojure comparison tests only need votes, comments, and math_blob. They compare against the Clojure output, not the Python golden snapshot. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 6e0b5d7 commit 7ceb99c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

delphi/tests/test_legacy_clojure_regression.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@
2727

2828

2929
def _get_clojure_datasets(include_local: bool) -> list[str]:
30-
"""Get datasets that have Clojure math_blob for comparison."""
30+
"""Get datasets that have Clojure math_blob for comparison.
31+
32+
Only requires votes, comments, and math_blob - does NOT require golden_snapshot.
33+
"""
3134
datasets = discover_datasets(include_local=include_local)
3235
return [
3336
name for name, info in datasets.items()
34-
if info.is_valid and info.has_clojure_reference
37+
if info.has_votes and info.has_comments and info.has_clojure_reference
3538
]
3639

3740

0 commit comments

Comments
 (0)