aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 0cc1531..5c9917a 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -5527,7 +5527,7 @@ class RewriterTests(BasePlatformTests):
out = self.rewrite(self.builddir, os.path.join(self.builddir, 'info.json'))
expected = {'name': 'myExe', 'sources': ['main.cpp']}
self.assertEqual(len(out['target']), 2)
- for _, val in out['target'].items():
+ for val in out['target'].values():
self.assertDictEqual(expected, val)
def test_kwargs_info(self):