Skip to content

Commit 509eed2

Browse files
committed
Update test_validate_format.py
1 parent b55b254 commit 509eed2

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-
validate_file(file)
10+
result = validate_file(file)
1111
except Exception as e:
12-
errors.append(e)
12+
errors.append(f"\n\n{e}")
1313
assert not errors, "\n".join(errors)
1414

1515

0 commit comments

Comments
 (0)