From 05f6cae73b3a908adc4a51c5a5754b910a3de3fb Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Thu, 21 Sep 2023 14:52:43 +0200 Subject: [PATCH] Update API test case for new collection copy default --- lib/galaxy_test/api/test_history_contents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy_test/api/test_history_contents.py b/lib/galaxy_test/api/test_history_contents.py index d35964ebeedf..74be58604d08 100644 --- a/lib/galaxy_test/api/test_history_contents.py +++ b/lib/galaxy_test/api/test_history_contents.py @@ -553,7 +553,7 @@ def test_hdca_copy(self, history_id): assert len(contents) == 1 new_forward, _ = self.__get_paired_response_elements(history_id, contents[0]) self._assert_has_keys(new_forward, "history_id") - assert new_forward["history_id"] == history_id + assert new_forward["history_id"] == second_history_id def test_hdca_copy_with_new_dbkey(self, history_id): fetch_response = self.dataset_collection_populator.create_pair_in_history(history_id, wait=True).json()