We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28cd970 commit 39cc8afCopy full SHA for 39cc8af
tests/unit/test_pageiterator.py
@@ -69,6 +69,13 @@ def test_no_paging_required():
69
# above. Depending on execution order, this can result in calls to the mock
70
# made by other tests to be counted here. Explicitly reset to prevent this.
71
req.reset_mock()
72
+ try:
73
+ req.assert_not_called()
74
+ except AssertionError as e:
75
+ raise AssertionError(
76
+ f"method_calls={req.mock_calls} call_args={req.call_args_list}"
77
+ )
78
+
79
pager = PageIterator(obj)
80
81
# Returned page of items should preserve item order
0 commit comments