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 4419d87 commit 7f5a3acCopy full SHA for 7f5a3ac
tests/unit/test_pageiterator_no_paging.py
@@ -10,6 +10,7 @@ def test_no_paging_required():
10
obj = RestObj(items=items, count=len(items))
11
12
with mock.patch("sasctl.core.request") as req:
13
+ req.reset_mock(visited=True, side_effect=True)
14
pager = PageIterator(obj)
15
16
# Returned page of items should preserve item order
@@ -23,4 +24,4 @@ def test_no_paging_required():
23
24
except AssertionError as e:
25
raise AssertionError(
26
f"method_calls={req.mock_calls} call_args={req.call_args_list}"
- )
27
+ )
0 commit comments