Dave Randall
Results
1
comments of
Dave Randall
@gabrielfalcao I can confirm that it only appears to impact POST requests as @tim-schilling suggested: ```Python import httpretty import requests httpretty.enable() httpretty.register_uri(method=httpretty.POST, uri="https://example.com/foo") requests.post("https://example.com/foo", data="bar") len(httpretty.latest_requests()) # returns 2 httpretty.reset()...