[pypy-svn] r16948 - pypy/release/0.7.x/pypy/module/_sre/test

nik at codespeak.net nik at codespeak.net
Sun Aug 28 11:21:39 CEST 2005


Author: nik
Date: Sun Aug 28 11:21:39 2005
New Revision: 16948

Modified:
   pypy/release/0.7.x/pypy/module/_sre/test/test_interp_sre.py
Log:
fixed typo in test


Modified: pypy/release/0.7.x/pypy/module/_sre/test/test_interp_sre.py
==============================================================================
--- pypy/release/0.7.x/pypy/module/_sre/test/test_interp_sre.py	(original)
+++ pypy/release/0.7.x/pypy/module/_sre/test/test_interp_sre.py	Sun Aug 28 11:21:39 2005
@@ -95,6 +95,6 @@
             assert [0, 1] == isre.to_byte_array(256)
             assert [2, 1] == isre.to_byte_array(258)
         else:
-            assert [1, 0, 0, ] == isre.to_byte_array(1)
+            assert [1, 0, 0, 0] == isre.to_byte_array(1)
             assert [0, 1, 0, 0] == isre.to_byte_array(256)
             assert [4, 3, 2, 1] == isre.to_byte_array(0x01020304)



More information about the Pypy-commit mailing list