Skip to content

Commit b55b254

Browse files
committed
Update test_validate_format.py
1 parent 7df741c commit b55b254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_validate_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def test_project_files():
77
errors = []
88
for file in files:
99
try:
10-
result = validate_file(file)
10+
validate_file(file)
1111
except Exception as e:
12-
pass
12+
errors.append(e)
1313
assert not errors, "\n".join(errors)
1414

1515

0 commit comments

Comments
 (0)