Skip to content

Commit fa0df21

Browse files
committed
additional debugging for page iterator tests
1 parent f1d74c5 commit fa0df21

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/test_pageiterator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def test_no_paging_required():
7171
try:
7272
request.assert_not_called()
7373
except AssertionError as e:
74-
raise AssertionError(f'method_calls={request.method_calls} call_args={request.call_args}')
74+
raise AssertionError(f'method_calls={request.mock_calls} call_args={request.call_args_list}')
75+
7576

7677
def test_paging_required(paging):
7778
"""Requests should be made to retrieve additional pages."""

0 commit comments

Comments
 (0)