@@ -437,6 +437,7 @@ def test_request_check_default(self, mock_request, mock_fetch, mock_refresh):
437437 mock_request .assert_called_with (
438438 "GET" ,
439439 "https://api.4insight.io/v1.0/Campaigns" ,
440+ params = None ,
440441 other = "thing" ,
441442 allow_redirects = True ,
442443 timeout = auth ._defaults ["timeout" ],
@@ -453,6 +454,7 @@ def test_request_args(self, mock_request, mock_fetch, mock_refresh):
453454 mock_request .assert_called_with (
454455 "GET" ,
455456 "https://api.4insight.io/v1.0/Campaigns" ,
457+ params = None ,
456458 other = "thing" ,
457459 allow_redirects = True ,
458460 ** auth ._defaults ,
@@ -473,6 +475,7 @@ def test_request_args_none(self, mock_request, mock_fetch, mock_refresh):
473475 mock_request .assert_called_with (
474476 "GET" ,
475477 "https://api.4insight.io/v1.0/Campaigns" ,
478+ params = None ,
476479 other = "thing" ,
477480 another = "one" ,
478481 allow_redirects = True ,
@@ -487,7 +490,7 @@ def test_request_abs_path(self, mock_request, mock_fetch, mock_refresh):
487490 auth .get (* args )
488491
489492 mock_request .assert_called_with (
490- "GET" , args [0 ], allow_redirects = True , ** auth ._defaults
493+ "GET" , args [0 ], params = None , allow_redirects = True , ** auth ._defaults
491494 )
492495
493496 @patch ("fourinsight.api.authenticate.OAuth2Session.request" )
0 commit comments