We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7422d68 commit 6bfe1eeCopy full SHA for 6bfe1ee
2 files changed
fourinsight/api/authenticate.py
@@ -223,6 +223,7 @@ def get_pages(self, url, **kwargs):
223
url = None
224
else:
225
url = response.json().get("@odata.nextLink")
226
+ kwargs = {}
227
yield response
228
229
tests/test_authenticator.py
@@ -552,9 +552,9 @@ def get_side_effect(*args, **kwargs):
552
mock_get.assert_has_calls(
553
[
554
call("foo/bar/baz", baz="foobar"),
555
- call("first/nextlink", baz="foobar"),
556
- call("second/nextlink", baz="foobar"),
557
- call("third/nextlink", baz="foobar"),
+ call("first/nextlink"),
+ call("second/nextlink"),
+ call("third/nextlink"),
558
]
559
)
560
@@ -605,9 +605,9 @@ def get_side_effect(*args, **kwargs):
605
606
607
608
609
610
611
612
613
0 commit comments