From 4320f81bf4c6a6b6f97dbfb7a6ba667dd71c4977 Mon Sep 17 00:00:00 2001 From: Richard Boulton Date: Thu, 16 Jun 2011 13:06:22 +0100 Subject: [PATCH] Actually use the HTTPSBIN variable for test https requests --- test_requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_requests.py b/test_requests.py index 3c1a437a..6aaf0b9a 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)