Commit dc61ec35 authored by Senthil Kumaran's avatar Senthil Kumaran

That's self.env.unset(k) and not env.unset(k) I was heading back to the problem.

parent 5a43e865
......@@ -103,7 +103,7 @@ class ProxyTests(unittest.TestCase):
# Delete all proxy related env vars
for k, v in os.environ.iteritems():
if 'proxy' in k.lower():
env.unset(k)
self.env.unset(k)
def tearDown(self):
# Restore all proxy related env vars
......
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