diff options
Diffstat (limited to 'tests/test_files.py')
-rw-r--r-- | tests/test_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index 813f8612..e3d33285 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -56,7 +56,7 @@ class FilesTest(CoverageTest): def test_flat_rootname(self): self.assertEqual(flat_rootname("a/b/c.py"), "a_b_c_py") - self.assertEqual(flat_rootname(r"c:\foo\bar.html"), "c__foo_bar_html") + self.assertEqual(flat_rootname(r"c:\foo\bar.html"), "_foo_bar_html") class MatcherTest(CoverageTest): |