Fix @bigmemtest when no limit is given by the user (oops)
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 60c891a..2062dd5 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -1001,7 +1001,7 @@
# to make sure they work. We still want to avoid using
# too much memory, though, but we do that noisily.
maxsize = 5147
- self.assertFalse(maxsize * memuse + overhead > 20 * _1M)
+ self.assertFalse(maxsize * memuse > 20 * _1M)
else:
maxsize = int(max_memuse / memuse)
if maxsize < minsize: