Skip to content

Commit e3054d6

Browse files
Fix pytest
1 parent b058649 commit e3054d6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pydatalab/tests/server/test_export_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ def test_create_eln_file(self, database, tmp_path, user_id):
106106
output_path = tmp_path / "test.eln"
107107

108108
try:
109-
create_eln_file(collection_id, str(output_path))
110-
109+
create_eln_file(str(output_path), collection_id)
111110
assert output_path.exists()
112111

113112
with zipfile.ZipFile(output_path, "r") as zf:

0 commit comments

Comments
 (0)