From 42944007338bdaa570a3ab25aafc279ef150d169 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 2 Jun 2015 20:13:22 -0500 Subject: [PATCH] Qualify classname in tests --- test_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_requests.py b/test_requests.py index e8b64b4c..1053666e 100755 --- a/test_requests.py +++ b/test_requests.py @@ -1618,7 +1618,7 @@ def test_prepare_unicode_url(): def test_prepare_requires_a_request_method(): - req = Request() + req = requests.Request() with pytest.raises(ValueError): req.prepare()