summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests/test_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/tal/tests/test_files.py')
-rw-r--r--src/zope/tal/tests/test_files.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zope/tal/tests/test_files.py b/src/zope/tal/tests/test_files.py
index 8d453d5..c5b8dcf 100644
--- a/src/zope/tal/tests/test_files.py
+++ b/src/zope/tal/tests/test_files.py
@@ -31,7 +31,7 @@ import zope.tal.runtest
from zope.tal.tests import utils
-class FileTestCase(unittest.TestCase):
+class _FileTestCase(unittest.TestCase):
def __init__(self, file, dir):
self.__file = file
@@ -92,6 +92,6 @@ def test_suite():
if not args:
sys.stderr.write("Warning: no test input files found!!!\n")
for arg in args:
- case = FileTestCase(arg, parentdir)
+ case = _FileTestCase(arg, parentdir)
suite.addTest(case)
return suite