Skip to content

Commit

Permalink
Merge pull request #18026 from mvdbeek/fix_test_get_tags_histories_co…
Browse files Browse the repository at this point in the history
…ntent

[24.0] Fix ``test_get_tags_histories_content`` test
  • Loading branch information
davelopez authored Apr 19, 2024
2 parents a85f3b3 + e32b9aa commit 9c26321
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/galaxy_test/api/test_item_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ def _create_valid_tag(self, prefix: str):
return response

def _create_history_contents(self, history_id):
history_content_id = self.dataset_collection_populator.create_list_in_history(
history_id, contents=["test_dataset"], direct_upload=True, wait=True
).json()["outputs"][0]["id"]
history_content_id = self.dataset_populator.new_dataset(
history_id, contents="test_dataset", direct_upload=True, wait=True
)["id"]
return history_content_id

def _create_history(self):
Expand Down

0 comments on commit 9c26321

Please sign in to comment.