Skip to content

Commit 5cd96e9

Browse files
sylvestrecakebaker
andauthored
Update util/compare_test_results.py
Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
1 parent 1c78d3d commit 5cd96e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/compare_test_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def identify_test_changes(current_flat, reference_flat):
6161
# Find fixes (tests that were failing but now passing)
6262
fixes = []
6363
for test_path, status in reference_flat.items():
64-
if status == "FAIL" or status == "ERROR":
64+
if status in ("FAIL", "ERROR"):
6565
if test_path in current_flat:
6666
if current_flat[test_path] == "PASS":
6767
fixes.append(test_path)

0 commit comments

Comments
 (0)