[pypy-commit] pypy default: fix test

arigo noreply at buildbot.pypy.org
Sun Feb 15 16:13:38 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r75898:956c35f6c0e4
Date: 2015-02-15 16:12 +0100
http://bitbucket.org/pypy/pypy/changeset/956c35f6c0e4/

Log:	fix test

diff --git a/pypy/module/_cffi_backend/test/test_handle.py b/pypy/module/_cffi_backend/test/test_handle.py
--- a/pypy/module/_cffi_backend/test/test_handle.py
+++ b/pypy/module/_cffi_backend/test/test_handle.py
@@ -19,7 +19,7 @@
         pwr = PseudoWeakRef()
         expected_content[index] = pwr
         ch.handles[index] = pwr
-    assert len(ch.handles) < 13500
+    assert len(ch.handles) <= 16384
     for index, pwr in expected_content.items():
         assert ch.handles[index] is pwr
 


More information about the pypy-commit mailing list