Skip to content

Commit bcdd677

Browse files
Fix e2e tests by not importing PaginationIterable (#221)
1 parent bb942e4 commit bcdd677

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

clients/python/test/e2e/test_files_api.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from pathlib import Path
99

1010
import osparc
11-
from osparc._utils import PaginationIterable
1211
import pytest
1312
from memory_profiler import memory_usage
1413
from typing import Final, Callable
@@ -90,9 +89,7 @@ def test_search_files(
9089
use_id: bool,
9190
faker: Faker,
9291
) -> None:
93-
results: PaginationIterable = files_api._search_files(
94-
sha256_checksum=f"{faker.sha256()}"
95-
)
92+
results = files_api._search_files(sha256_checksum=f"{faker.sha256()}")
9693
assert len(results) == 0, "Found file which shouldn't be there"
9794

9895
results = files_api._search_files(

0 commit comments

Comments
 (0)