diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_process.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_process.py b/test/test_process.py index ed9e89f3..4cf5524f 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -175,7 +175,9 @@ class ProcessTest(CoverageTest): data.read_file(".coverage") summary = data.summary(fullpath=True) self.assertEqual(len(summary), 1) - self.assertEqual(list(summary.keys())[0], os.path.normpath('src/x.py')) + actual = os.path.abspath(list(summary.keys())[0]) + expected = os.path.abspath('src/x.py') + self.assertEqual(actual, expected) self.assertEqual(list(summary.values())[0], 6) def test_missing_source_file(self): |