We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 536d133 commit a94a7d0Copy full SHA for a94a7d0
tests/test_api.py
@@ -60,12 +60,7 @@ def test_v2_read():
60
try:
61
reader = Reader.from_file("tests/fixtures/C.jpg")
62
manifest = reader.get_active_manifest()
63
- if manifest is None:
64
- print("No active manifest found")
65
- exit(1)
66
- #jsonReport = reader.json()
67
- #manifest_store = json.loads(jsonReport)
68
- #manifest = manifest_store["manifests"][manifest_store["active_manifest"]]
+ assert manifest is not None
69
assert "make_test_images" in manifest["claim_generator"]
70
assert manifest["title"]== "C.jpg"
71
assert manifest["format"] == "image/jpeg"
0 commit comments