Skip to content

Commit

Permalink
Updating the test to use base booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagoasdf committed Dec 12, 2024
1 parent 43f5b0d commit 9814e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ops/service/pagination/test_pagination_strategy_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def response_with_has_next_conditional_true():
"customers": [{"id": 1}, {"id": 2}, {"id": 3}],
"links": {
"next": "https://domain.com/customers?page=def",
"hasNext": "true",
"hasNext": True,
},
}
),
Expand All @@ -76,7 +76,7 @@ def response_with_has_next_conditional_false():
"customers": [{"id": 1}, {"id": 2}, {"id": 3}],
"links": {
"next": "https://domain.com/customers?page=abc",
"hasNext": "false",
"hasNext": False,
},
}
),
Expand Down

0 comments on commit 9814e03

Please sign in to comment.