Skip to content

Commit 9248073

Browse files
committed
test: reset mock
1 parent 7f5a3ac commit 9248073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_pageiterator_no_paging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_no_paging_required():
1010
obj = RestObj(items=items, count=len(items))
1111

1212
with mock.patch("sasctl.core.request") as req:
13-
req.reset_mock(visited=True, side_effect=True)
13+
req.reset_mock(side_effect=True)
1414
pager = PageIterator(obj)
1515

1616
# Returned page of items should preserve item order

0 commit comments

Comments
 (0)