diff --git a/lib/galaxy_test/base/populators.py b/lib/galaxy_test/base/populators.py index 1df5b0358c56..abd8fe1b5a24 100644 --- a/lib/galaxy_test/base/populators.py +++ b/lib/galaxy_test/base/populators.py @@ -2759,7 +2759,9 @@ def show_ldda(self, ldda_id): def new_library_dataset_in_private_library(self, library_name="private_dataset", wait=True): library = self.new_private_library(library_name) payload, files = self.create_dataset_request(library, file_type="txt", contents="create_test") - create_response = self.galaxy_interactor.post(f"libraries/{library['id']}/contents", payload, files=files, json=True) + create_response = self.galaxy_interactor.post( + f"libraries/{library['id']}/contents", payload, files=files, json=True + ) api_asserts.assert_status_code_is(create_response, 200) library_datasets = create_response.json() assert len(library_datasets) == 1