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 5c81d15 commit 0aab2baCopy full SHA for 0aab2ba
tests/unit_tests.py
@@ -44,13 +44,6 @@ def test_stream_read_and_parse(self):
44
title = manifest = manifest_store["manifests"][manifest_store["active_manifest"]]["title"]
45
self.assertEqual(title, "C.jpg")
46
47
- def test_from_manifest_data_and_stream(self):
48
- with open(testPath, "rb") as stream:
49
- with open("tests/fixtures/manifest.c2pa", "r") as manifest_data:
50
- reader = Reader("image/jpeg",stream, manifest_data)
51
- manifest_store = json.loads(reader.json())
52
- title = manifest = manifest_store["manifests"][manifest_store["active_manifest"]]["title"]
53
- self.assertEqual(title, "C.jpg")
54
55
def test_json_decode_err(self):
56
with self.assertRaises(Error.Io):
0 commit comments