This commit is contained in:
Antoine Pitrou 2010-10-14 18:32:54 +00:00
parent b3a88b5c42
commit 8c8f1ac46c
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class ProxyTests(unittest.TestCase):
self.env = support.EnvironmentVarGuard()
# Delete all proxy related env vars
for k in list(os.environ):
if 'proxy' not in k.lower():
if 'proxy' in k.lower():
self.env.unset(k)
def tearDown(self):