We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb942e4 commit bcdd677Copy full SHA for bcdd677
clients/python/test/e2e/test_files_api.py
@@ -8,7 +8,6 @@
8
from pathlib import Path
9
10
import osparc
11
-from osparc._utils import PaginationIterable
12
import pytest
13
from memory_profiler import memory_usage
14
from typing import Final, Callable
@@ -90,9 +89,7 @@ def test_search_files(
90
89
use_id: bool,
91
faker: Faker,
92
) -> None:
93
- results: PaginationIterable = files_api._search_files(
94
- sha256_checksum=f"{faker.sha256()}"
95
- )
+ results = files_api._search_files(sha256_checksum=f"{faker.sha256()}")
96
assert len(results) == 0, "Found file which shouldn't be there"
97
98
results = files_api._search_files(
0 commit comments