From: Richard Boulton Date: Thu, 16 Jun 2011 12:06:22 +0000 (+0100) Subject: Actually use the HTTPSBIN variable for test https requests X-Git-Tag: v0.6.0~148 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4320f81bf4c6a6b6f97dbfb7a6ba667dd71c4977;p=services%2Fpython-requests.git Actually use the HTTPSBIN variable for test https requests --- diff --git a/test_requests.py b/test_requests.py index 3c1a437..6aaf0b9 100755 --- a/test_requests.py +++ b/test_requests.py @@ -24,7 +24,7 @@ def httpbin(*suffix): def httpsbin(*suffix): """Returns url for HTTPSBIN resource.""" - return HTTPBIN_URL + '/'.join(suffix) + return HTTPSBIN_URL + '/'.join(suffix)