Unverified Commit 9c263213 authored by David López's avatar David López Committed by GitHub
Browse files

Merge pull request #18026 from mvdbeek/fix_test_get_tags_histories_content

[24.0] Fix ``test_get_tags_histories_content`` test
parents a85f3b38 e32b9aa6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -135,9 +135,9 @@ class TestItemTagsApi(ApiTestCase):
        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):