From 2a0e1ac1d45cdbc03e93eb848c8a7ae1bbe8b865 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Fri, 9 Nov 2018 10:25:39 -0600 Subject: [PATCH] Fix URLs This patch set sanitizes and changes the default proxy URLs. Change-Id: Ibaeb501b59eeea8427fa812078236cfc4fe39623 Signed-off-by: Tin Lam --- tests/unit/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_utils.py b/tests/unit/test_utils.py index 59a1e2a3..90bcf435 100644 --- a/tests/unit/test_utils.py +++ b/tests/unit/test_utils.py @@ -24,10 +24,10 @@ import uuid _PROXY_SERVERS = { 'http': os.getenv('HTTP_PROXY', - os.getenv('http_proxy', 'http://one.proxy.att.com:8888')), + os.getenv('http_proxy', 'http://proxy.example.com')), 'https': os.getenv('HTTPS_PROXY', - os.getenv('https_proxy', 'https://one.proxy.att.com:8888')) + os.getenv('https_proxy', 'https://proxy.example.com')) }