Skip to content

Commit

Permalink
Use UUID instead of ID in user object store test
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Oct 15, 2024
1 parent c905259 commit 946bded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/objectstore/test_per_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 946bded

Please sign in to comment.