Merge "No need to use dict_object.keys()"

This commit is contained in:
Zuul 2018-12-18 10:41:33 +00:00 committed by Gerrit Code Review
commit 1bcd0617b6
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class BuildTest(object):
failures = failures + 1
LOG.critical(">>> Expected image '%s' to succeed!", image)
for image in unmatched_results.keys():
for image in unmatched_results:
LOG.warning(">>> Image '%s' was not matched", image)
self.assertEqual(0, failures, "%d failure(s) occurred" % failures)