summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-08-31 17:55:25 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-08-31 17:55:25 (GMT)
commita41213726b56df97e63572d038ffb451c461657c (patch)
tree894fef64876400aff9690a39113eff9ff1151433
parentfb13721b1b48b814dd8efbececfbb1e6c52c1c5d (diff)
downloadcpython-a41213726b56df97e63572d038ffb451c461657c.zip
cpython-a41213726b56df97e63572d038ffb451c461657c.tar.gz
cpython-a41213726b56df97e63572d038ffb451c461657c.tar.bz2
Temporary disable tests cleanup (issue 11798).
-rw-r--r--Lib/unittest/suite.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
index 176af57..e7b8b4a 100644
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -66,6 +66,7 @@ class BaseTestSuite(object):
def _removeTestAtIndex(self, index):
"""Stop holding a reference to the TestCase at index."""
+ return
try:
self._tests[index] = None
except TypeError: