Skip to content

Commit

Permalink
dont import paginationiterator in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Nov 19, 2024
1 parent bb942e4 commit 83d28fb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions clients/python/test/e2e/test_files_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from pathlib import Path

import osparc
from osparc._utils import PaginationIterable
import pytest
from memory_profiler import memory_usage
from typing import Final, Callable
Expand Down Expand Up @@ -90,9 +89,7 @@ def test_search_files(
use_id: bool,
faker: Faker,
) -> None:
results: PaginationIterable = files_api._search_files(
sha256_checksum=f"{faker.sha256()}"
)
results = files_api._search_files(sha256_checksum=f"{faker.sha256()}")
assert len(results) == 0, "Found file which shouldn't be there"

results = files_api._search_files(
Expand Down

0 comments on commit 83d28fb

Please sign in to comment.