[pypy-commit] pypy default: fix weird fallout of 74c1f4c8363d

cfbolz pypy.commits at gmail.com
Mon Dec 3 03:40:05 EST 2018


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: 
Changeset: r95405:52c3040f147b
Date: 2018-12-03 09:39 +0100
http://bitbucket.org/pypy/pypy/changeset/52c3040f147b/

Log:	fix weird fallout of 74c1f4c8363d

diff --git a/rpython/translator/backendopt/test/test_mallocprediction.py b/rpython/translator/backendopt/test/test_mallocprediction.py
--- a/rpython/translator/backendopt/test/test_mallocprediction.py
+++ b/rpython/translator/backendopt/test/test_mallocprediction.py
@@ -179,7 +179,7 @@
     t, graph = rtype(entry_point, [int])
     total0 = preparation(t, t.graphs)
     total = clever_inlining_and_malloc_removal(t)
-    assert total0 + total == 10
+    assert total0 + total == 9
 
 def test_loop():
     l = [10, 12, 15, 1]


More information about the pypy-commit mailing list