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 361c454 commit 293dc56Copy full SHA for 293dc56
test/integration/test_container_registry_v1.py
@@ -173,6 +173,8 @@ def test_get_image_manifest(self):
173
174
assert get_image_manifest_response.get_status_code() == 200
175
image_manifest = get_image_manifest_response.get_result()
176
+ if not isinstance(image_manifest, dict):
177
+ image_manifest = json.loads(image_manifest.text)
178
assert image_manifest.get("schemaVersion") == 2
179
180
@needscredentials
0 commit comments