Skip to content

Commit

Permalink
Reformating populators.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arash77 committed Sep 26, 2024
1 parent d944728 commit e60e2bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy_test/base/populators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e60e2bc

Please sign in to comment.