diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-03 08:48:59 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-03 08:48:59 -0400 |
commit | d2dd88a346aa527824e510a2a5618db2e82616d6 (patch) | |
tree | 63fffe4e3cfd0f6bfb0153d0edff1065b63b2fcd /tests/test_files.py | |
parent | 275347991db0ae2b7cc69fac0b9d32dd622f0fc5 (diff) | |
download | python-coveragepy-git-d2dd88a346aa527824e510a2a5618db2e82616d6.tar.gz |
Small cleanups
Diffstat (limited to 'tests/test_files.py')
-rw-r--r-- | tests/test_files.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index 42457a5c..f93feba7 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -88,7 +88,6 @@ class MatcherTest(CoverageTest): (self.make_file("sub3/file4.py"), True), (self.make_file("sub3/file5.c"), False), ] - fl = FileLocator() fnm = FnmatchMatcher(["*.py", "*/sub2/*"]) self.assertEqual(fnm.info(), ["*.py", "*/sub2/*"]) for filepath, matches in matches_to_try: |