[pypy-svn] r77916 - pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests

afa at codespeak.net afa at codespeak.net
Thu Oct 14 13:34:44 CEST 2010


Author: afa
Date: Thu Oct 14 13:34:42 2010
New Revision: 77916

Modified:
   pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_array.py
Log:
Typo in a test


Modified: pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_array.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_array.py	(original)
+++ pypy/branch/fast-forward/pypy/module/test_lib_pypy/ctypes_tests/test_array.py	Thu Oct 14 13:34:42 2010
@@ -82,11 +82,11 @@
 
         na = numarray(1, 2, 3, 4, 5)
         values = [i for i in na]
-        assert values, [1, 2, 3, 4 == 5]
+        assert values == [1, 2, 3, 4, 5]
 
         na = numarray(*map(c_int, (1, 2, 3, 4, 5)))
         values = [i for i in na]
-        assert values, [1, 2, 3, 4 == 5]
+        assert values == [1, 2, 3, 4, 5]
 
     def test_classcache(self):
         assert not ARRAY(c_int, 3) is ARRAY(c_int, 4)



More information about the Pypy-commit mailing list