We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd88144 commit d96e9caCopy full SHA for d96e9ca
tests/supervisor/test_views.py
@@ -23,14 +23,17 @@ async def test_allocation_fails_on_invalid_item_hash(aiohttp_client):
23
24
assert response.status == 400
25
26
- assert await response.json() == [
+ response = await response.json()
27
+ for error in response:
28
+ error.pop("url", None)
29
+
30
+ assert response == [
31
{
32
"loc": ["persistent_vms", 0],
33
"msg": "Value error, Could not determine hash type: 'not-an-ItemHash'",
34
"type": "value_error",
35
"ctx": {"error": "Could not determine hash type: 'not-an-ItemHash'"},
36
"input": "not-an-ItemHash",
- "url": "https://errors.pydantic.dev/2.9/v/value_error",
37
},
38
]
39
0 commit comments