Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[24.0] Fix test_storage_show API test #19522

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions lib/galaxy_test/api/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,6 @@ def test_delete_batch(self):
for purged_source_id in expected_purged_source_ids:
self.dataset_populator.wait_for_purge(history_id, purged_source_id["id"])

@requires_new_history
@requires_new_library
def test_delete_batch_lddas(self):
# Create a library dataset
Expand Down Expand Up @@ -859,9 +858,7 @@ def assert_hash_value(self, dataset_details, expected_hash_value, hash_function,

def test_storage_show(self, history_id):
hda = self.dataset_populator.new_dataset(history_id, wait=True)
hda_details = self.dataset_populator.get_history_dataset_details(history_id, dataset=hda)
dataset_id = hda_details["dataset_id"]
storage_info_dict = self.dataset_populator.dataset_storage_info(dataset_id)
storage_info_dict = self.dataset_populator.dataset_storage_info(hda["id"])
assert_has_keys(storage_info_dict, "object_store_id", "name", "description")

def test_storage_show_on_discarded(self, history_id):
Expand Down
Loading