We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12860c2 commit 3b4fd38Copy full SHA for 3b4fd38
test/test_process.py
@@ -175,8 +175,8 @@ def test_combine_with_aliases(self):
175
data.read_file(".coverage")
176
summary = data.summary(fullpath=True)
177
self.assertEqual(len(summary), 1)
178
- self.assertEqual(summary.keys()[0], os.path.normpath('src/x.py'))
179
- self.assertEqual(summary.values()[0], 6)
+ self.assertEqual(list(summary.keys())[0], os.path.normpath('src/x.py'))
+ self.assertEqual(list(summary.values())[0], 6)
180
181
def test_missing_source_file(self):
182
# Check what happens if the source is missing when reporting happens.
0 commit comments