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 1734a33 commit 02654fbCopy full SHA for 02654fb
tests/unit/test_pageiterator_no_paging.py
@@ -13,7 +13,8 @@ def test_no_paging_required():
13
import sasctl
14
assert not isinstance(sasctl.core.request, unittest.mock.Mock)
15
16
- with mock.patch("sasctl.core.request") as req:
+ with mock.patch("sasctl.core.Session.request") as req:
17
+ # with mock.patch("sasctl.core.request") as req:
18
req.reset_mock(side_effect=True)
19
try:
20
req.assert_not_called()
0 commit comments