diff options
Diffstat (limited to 'tests/test_files.py')
-rw-r--r-- | tests/test_files.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index 9c92fd76..de0dbbd5 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -144,8 +144,8 @@ def test_fnmatches_to_regex(patterns, case_insensitive, partial, matches, nomatc class MatcherTest(CoverageTest): """Tests of file matchers.""" - def setup_test(self): - super().setup_test() + def setUp(self): + super().setUp() files.set_relative_directory() def assertMatches(self, matcher, filepath, matches): |