Skip to content

Commit

Permalink
fix args in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Nov 26, 2024
1 parent 766c8eb commit 7df8b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_entity_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ def test_simple_operations(
# create folders with subfolder
for folder_number in range(folders_count):
folder = hub.add_new_folder(
"Folder",
folder_type="Folder",
name=f"{folder_name}{folder_number:03}"
)
folders.append(folder)
hub.commit_changes()

subfolder = hub.add_new_folder(
"Folder",
folder_type="Folder",
name=f"{folder_name}{folder_number:03}",
parent_id=folder["id"]
)
Expand Down

0 comments on commit 7df8b37

Please sign in to comment.