[Python-checkins] cpython (3.4): Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by
jason.coombs
python-checkins at python.org
Mon Sep 5 22:29:54 EDT 2016
https://hg.python.org/cpython/rev/556a11c11edd
changeset: 103109:556a11c11edd
branch: 3.4
parent: 103005:e82b995d1a5c
user: Jason R. Coombs <jaraco at jaraco.com>
date: Mon Sep 05 22:24:01 2016 -0400
summary:
Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by developed for Issue #12885.
files:
Lib/distutils/tests/test_filelist.py | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Lib/distutils/tests/test_filelist.py b/Lib/distutils/tests/test_filelist.py
--- a/Lib/distutils/tests/test_filelist.py
+++ b/Lib/distutils/tests/test_filelist.py
@@ -7,7 +7,7 @@
from distutils.errors import DistutilsTemplateError
from distutils.filelist import glob_to_re, translate_pattern, FileList
-from test.support import captured_stdout
+from test.support import captured_stdout, run_unittest
from distutils.tests import support
MANIFEST_IN = """\
@@ -292,5 +292,8 @@
self.assertWarnings()
+def test_suite():
+ return unittest.makeSuite(FileListTestCase)
+
if __name__ == "__main__":
- unittest.main()
+ run_unittest(test_suite())
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list