From 16b5d88d055b4b676455bec502032f8ac8bebe07 Mon Sep 17 00:00:00 2001 From: jaketothepast Date: Sun, 27 Jan 2019 11:43:32 -0500 Subject: [PATCH] Switch to httpbin.org --- test/test_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_proxy.py b/test/test_proxy.py index 43f600c..e32ec59 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -4,7 +4,7 @@ import requests http_proxy = "http://127.0.0.1:8124" def test_proxy_basic(): - resp = requests.get("http://alibaba.com", proxies={"http": http_proxy}) + resp = requests.get("http://httpbin.org", proxies={"http": http_proxy}) assert resp.status_code == 200 \ No newline at end of file