Skip to content

Commit 1f5fd64

Browse files
committed
Issue python#27960: Revert state to 675e20c38fdac6, backing out all changes by developed for Issue python#12885.
1 parent 79ae967 commit 1f5fd64

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Lib/distutils/tests/test_filelist.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from distutils.errors import DistutilsTemplateError
88
from distutils.filelist import glob_to_re, translate_pattern, FileList
99

10-
from test.support import captured_stdout
10+
from test.support import captured_stdout, run_unittest
1111
from distutils.tests import support
1212

1313
MANIFEST_IN = """\
@@ -292,5 +292,8 @@ def test_process_template(self):
292292
self.assertWarnings()
293293

294294

295+
def test_suite():
296+
return unittest.makeSuite(FileListTestCase)
297+
295298
if __name__ == "__main__":
296-
unittest.main()
299+
run_unittest(test_suite())

0 commit comments

Comments
 (0)