You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
image=bound_image.update(description="My new Image description", type="the new image type", labels={})
59
-
hetzner_client.request.assert_called_with(url="/images/14", method="PUT", json={"description": "My new Image description", "type": "the new image type", "labels": {}})
58
+
image=bound_image.update(description="My new Image description", type="snapshot", labels={})
59
+
hetzner_client.request.assert_called_with(url="/images/14", method="PUT", json={"description": "My new Image description", "type": "snapshot", "labels": {}})
60
60
61
61
assertimage.id==4711
62
62
assertimage.description=="My new Image description"
image=images_client.update(image, description="My new Image description", type="the new image type", labels={})
134
-
images_client._client.request.assert_called_with(url="/images/1", method="PUT", json={"description": "My new Image description", "type": "the new image type", "labels": {}})
133
+
image=images_client.update(image, description="My new Image description", type="snapshot", labels={})
134
+
images_client._client.request.assert_called_with(url="/images/1", method="PUT", json={"description": "My new Image description", "type": "snapshot", "labels": {}})
135
135
136
136
assertimage.id==4711
137
137
assertimage.description=="My new Image description"
0 commit comments