Skip to content

Commit 0f3f781

Browse files
committed
fix the cross
1 parent 4a4e627 commit 0f3f781

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/validate_published_rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _parse_case_result(line: str) -> dict:
7777
"Type": d["type"],
7878
"Number": str(d["num"]),
7979
"Execution": CHECKMARK if exec_ok else CROSS,
80-
"Expected": CROSS if d.get("expected") is None else str(d["expected"]),
80+
"Expected": CROSS if d.get("expected") == "" else str(d["expected"]),
8181
"Actual": str(d.get("actual", "")),
8282
"Match": CHECKMARK if match_ok else CROSS,
8383
# Private fields used when generating failure detail

0 commit comments

Comments
 (0)