Commit 7a2ee0b4 authored by Senthil Kumaran's avatar Senthil Kumaran

Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration

parent 8015725d
......@@ -101,7 +101,7 @@ class ProxyTests(unittest.TestCase):
# Records changes to env vars
self.env = test_support.EnvironmentVarGuard()
# Delete all proxy related env vars
for k, v in os.environ.iteritems():
for k in os.environ.keys():
if 'proxy' in k.lower():
self.env.unset(k)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment