You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, this fails with the following matcher error:
E => Cannot match any mock for the following request:
E ==================================================
E Method: GET
E URL: https://example.com:443/?x=1
E Query: {'x': ['1']}
E Headers: HTTPHeaderDict({'Host': 'example.com', 'User-Agent': 'Python-urllib/3.12', 'Connection': 'close'})
E ==================================================
E
E => Detailed matching errors:
E QueryMatcher: 1 != '1'
The text was updated successfully, but these errors were encountered:
Query params are always strings and should be compared as such, even if passed as something else to the mock constructor.
For example, the following should work:
However, this fails with the following matcher error:
The text was updated successfully, but these errors were encountered: