diff options
author | Ionel Cristian Maries <contact@ionelmc.ro> | 2015-06-07 03:43:33 +0300 |
---|---|---|
committer | Ionel Cristian Maries <contact@ionelmc.ro> | 2015-06-07 03:43:33 +0300 |
commit | 259fae074bbae20dbb0afb3b7790ba923c12f28c (patch) | |
tree | f4d7474bbd271585c8a78f336e2b668834f029c6 /tests/test_files.py | |
parent | 588f3789c29ebf05cfe7b69ae306a40e34f83d1a (diff) | |
download | python-coveragepy-git-259fae074bbae20dbb0afb3b7790ba923c12f28c.tar.gz |
Use TestCase here.
--HG--
branch : ionelmc/correct-path-normalization-on-windows-th-1433618255921
Diffstat (limited to 'tests/test_files.py')
-rw-r--r-- | tests/test_files.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index acf42256..41f7b38a 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -2,6 +2,7 @@ import os import os.path +from unittest import TestCase from coverage.files import ( FileLocator, TreeMatcher, FnmatchMatcher, ModuleMatcher, PathAliases, @@ -14,7 +15,7 @@ from tests.coveragetest import CoverageTest if env.WINDOWS: - class IncompleteWindowsTest(CoverageTest): + class IncompleteWindowsTest(TestCase): def test_actual_path(self): self.assertEquals(actual_path(r'c:\Windows'), actual_path(r'C:\wINDOWS')) |