summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/util/test_varExpand.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests/util/test_varExpand.py')
-rw-r--r--pym/portage/tests/util/test_varExpand.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/tests/util/test_varExpand.py b/pym/portage/tests/util/test_varExpand.py
index ee0f573c9..e4f85ef43 100644
--- a/pym/portage/tests/util/test_varExpand.py
+++ b/pym/portage/tests/util/test_varExpand.py
@@ -11,7 +11,7 @@ class VarExpandTestCase(TestCase):
def testVarExpandPass(self):
varDict = { "a":"5", "b":"7", "c":"-5" }
- for key in varDict.keys():
+ for key in varDict:
result = varexpand( "$%s" % key, varDict )
self.failIf( result != varDict[key],