Skip to content

Commit

Permalink
Remove extra line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Oct 4, 2024
1 parent 0f5ecb6 commit cf57e34
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/sources/helpers/rest_client/test_paginators.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,6 @@ def test_update_state(self):
paginator.update_state(response, data=NON_EMPTY_PAGE)
assert paginator.has_next_page is False


def test_init_request(self):
paginator = PageNumberPaginator(base_page=1, total_path=None)
request = Mock(Request)
Expand Down Expand Up @@ -408,7 +407,6 @@ def test_init_request(self):
assert paginator.current_value == 1
assert paginator.has_next_page is True


def test_update_state_with_string_total_pages(self):
paginator = PageNumberPaginator(base_page=1, page=1)
response = Mock(Response, json=lambda: {"total": "3"})
Expand Down

0 comments on commit cf57e34

Please sign in to comment.