summaryrefslogtreecommitdiffstats
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-01 00:45:43 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-01 00:45:43 (GMT)
commit46d4440cad8b5b0ef14d669f20530fdc4e56757e (patch)
tree1a0b40f1fb194fede705a4143d006afbf2fcdc20 /Lib/test/support.py
parent77108eb4bf93972c7214729fd8dfce7784308c89 (diff)
downloadcpython-46d4440cad8b5b0ef14d669f20530fdc4e56757e.zip
cpython-46d4440cad8b5b0ef14d669f20530fdc4e56757e.tar.gz
cpython-46d4440cad8b5b0ef14d669f20530fdc4e56757e.tar.bz2
remove use of failIf
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 38ea107..f24adc8 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -735,7 +735,7 @@ def bigmemtest(minsize, memuse, overhead=5*_1M):
# to make sure they work. We still want to avoid using
# too much memory, though, but we do that noisily.
maxsize = 5147
- self.failIf(maxsize * memuse + overhead > 20 * _1M)
+ self.assertFalse(maxsize * memuse + overhead > 20 * _1M)
else:
maxsize = int((max_memuse - overhead) / memuse)
if maxsize < minsize: