From 946bded098999b0126dd3dabc69de39a4ff66c9d Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:33:13 +0200 Subject: [PATCH] Use UUID instead of ID in user object store test --- test/integration/objectstore/test_per_user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/objectstore/test_per_user.py b/test/integration/objectstore/test_per_user.py index 2b05f505a616..5eebb38ba945 100644 --- a/test/integration/objectstore/test_per_user.py +++ b/test/integration/objectstore/test_per_user.py @@ -103,7 +103,7 @@ def _create_simple_object_store(self) -> str: object_store_id = object_store_json["object_store_id"] assert object_store_id.startswith("user_objects://") - response = self.dataset_populator._get(f"object_store_instances/{object_store_json['id']}/test") + response = self.dataset_populator._get(f"object_store_instances/{object_store_json['uuid']}/test") response.raise_for_status() from galaxy.util.config_templates import PluginStatus