Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: galaxyproject/bioblend
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 237c77edd0590ad40a41f3d6d0dfa85d88f6d038
Choose a base ref
..
head repository: galaxyproject/bioblend
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 02cd70d7305317a66fb8795957cca2eb4ba1f910
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 bioblend/_tests/TestGalaxyFolders.py
4 changes: 2 additions & 2 deletions bioblend/_tests/TestGalaxyFolders.py
Original file line number Diff line number Diff line change
@@ -60,12 +60,12 @@ def test_folder_contents(self):
self.gi.folders.create_folder(self.folder["id"], f"{self.name} {i}")

# check defaults for limit and offset
f2 = list(_ for _ in self.gi.folders.contents(self.folder["id"]))
f2 = list(self.gi.folders.contents(self.folder["id"]))
assert len(f2) == 12
assert f2[0]["name"] == f"{self.name} 0"

# check non defaults
f2 = list(_ for _ in self.gi.folders.contents(self.folder["id"], limit=1))
f2 = list(self.gi.folders.contents(self.folder["id"], limit=1))
assert len(f2) == 12
assert f2[0]["name"] == f"{self.name} 0"