Skip to content

Commit d96e9ca

Browse files
committed
ignore url in test_allocation_fails_on_invalid_item_hash
1 parent cd88144 commit d96e9ca

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/supervisor/test_views.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ async def test_allocation_fails_on_invalid_item_hash(aiohttp_client):
2323

2424
assert response.status == 400
2525

26-
assert await response.json() == [
26+
response = await response.json()
27+
for error in response:
28+
error.pop("url", None)
29+
30+
assert response == [
2731
{
2832
"loc": ["persistent_vms", 0],
2933
"msg": "Value error, Could not determine hash type: 'not-an-ItemHash'",
3034
"type": "value_error",
3135
"ctx": {"error": "Could not determine hash type: 'not-an-ItemHash'"},
3236
"input": "not-an-ItemHash",
33-
"url": "https://errors.pydantic.dev/2.9/v/value_error",
3437
},
3538
]
3639

0 commit comments

Comments
 (0)