diff options
Diffstat (limited to 'tests/unit/test_gitlab.py')
-rw-r--r-- | tests/unit/test_gitlab.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unit/test_gitlab.py b/tests/unit/test_gitlab.py index 4d742d3..3826627 100644 --- a/tests/unit/test_gitlab.py +++ b/tests/unit/test_gitlab.py @@ -58,7 +58,7 @@ def resp_page_1(): "headers": headers, "content_type": "application/json", "status": 200, - "match_querystring": True, + "match": [responses.matchers.query_param_matcher({})], } @@ -81,7 +81,6 @@ def resp_page_2(): "content_type": "application/json", "status": 200, "match": [responses.matchers.query_param_matcher(params)], - "match_querystring": False, } |