Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-ifak committed Mar 22, 2024
1 parent aa8f048 commit 8aee177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aas_test_engines/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,6 @@ def check_aasx_file(file: TextIO, version: str = _DEFAULT_VERSION) -> AasTestRes
try:
zip = zipfile.ZipFile(file)
except zipfile.BadZipFile as e:
return AasTestResult(f"Cannot read: {e}", Level.ERROR)
return AasTestResult(f"Cannot read: {e}", level=Level.ERROR)

return check_aasx_data(zip, version)

0 comments on commit 8aee177

Please sign in to comment.