From cd4175628b67156d13f8aa0b1a027476a7769546 Mon Sep 17 00:00:00 2001 From: Pedro Crespo <32402063+pcrespov@users.noreply.github.com> Date: Thu, 9 Sep 2021 18:52:58 +0200 Subject: [PATCH] fixes tests/unit/with_dbs/10/snapshots --- .../unit/with_dbs/10/snapshots/test_snapshots_api_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/server/tests/unit/with_dbs/10/snapshots/test_snapshots_api_handlers.py b/services/web/server/tests/unit/with_dbs/10/snapshots/test_snapshots_api_handlers.py index f492f6f89a2..193ad87c388 100644 --- a/services/web/server/tests/unit/with_dbs/10/snapshots/test_snapshots_api_handlers.py +++ b/services/web/server/tests/unit/with_dbs/10/snapshots/test_snapshots_api_handlers.py @@ -87,7 +87,7 @@ async def test_create_snapshot(client, user_project: ProjectDict): assert data snapshot = SnapshotItem.parse_obj(data) - assert snapshot.parent_uuid == project_uuid + assert str(snapshot.parent_uuid) == project_uuid # snapshot project can be now retrieved resp = await client.get(f"/{vtag}/projects/{snapshot.project_uuid}")