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