summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-08-31 20:55:25 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-08-31 20:55:25 +0300
commita41213726b56df97e63572d038ffb451c461657c (patch)
tree894fef64876400aff9690a39113eff9ff1151433
parentfb13721b1b48b814dd8efbececfbb1e6c52c1c5d (diff)
downloadcpython-git-a41213726b56df97e63572d038ffb451c461657c.tar.gz
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 176af57fb0..e7b8b4a9fd 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: