Skip to content

Commit

Permalink
fix issues and shorten test
Browse files Browse the repository at this point in the history
  • Loading branch information
InnocentBug committed Feb 28, 2024
1 parent b36bcff commit 39a0862
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/api/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,14 @@ def test_api_search_node_type(cript_api: cript.API) -> None:
materials_paginator.auto_load_nodes = True
except StopIteration:
break
# We don't need to search for a million pages here.
if materials_paginator._number_fetched_pages > 6:
break

# Assure that we paginated more then one page
assert materials_paginator._current_page_number > 0
assert materials_paginator._number_fetched_pages > 0
assert len(materials_list) > 5
first_page_first_result = materials_list[0]["name"]
first_page_first_result = materials_list[0].name
# just checking that the word has a few characters in it
assert len(first_page_first_result) > 3

Expand Down

0 comments on commit 39a0862

Please sign in to comment.