summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-14 18:32:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-14 18:32:54 (GMT)
commit8c8f1ac46ce35a16a079f8a9ad1defedcea2fdff (patch)
tree278e4009b2169c779f141102551e9823db37e4c1 /Lib/test/test_urllib.py
parentb3a88b5c421fe867e1f5ecdd179b190614729933 (diff)
downloadcpython-8c8f1ac46ce35a16a079f8a9ad1defedcea2fdff.zip
cpython-8c8f1ac46ce35a16a079f8a9ad1defedcea2fdff.tar.gz
cpython-8c8f1ac46ce35a16a079f8a9ad1defedcea2fdff.tar.bz2
Oops
Diffstat (limited to 'Lib/test/test_urllib.py')
-rw-r--r--Lib/test/test_urllib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index f0766b2..fe557ff 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -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):