[pypy-commit] cffi default: typo

arigo noreply at buildbot.pypy.org
Wed Jul 4 06:03:37 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r578:c76e50de3531
Date: 2012-07-04 06:03 +0200
http://bitbucket.org/cffi/cffi/changeset/c76e50de3531/

Log:	typo

diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -792,7 +792,7 @@
                                        ('a', BSChar, -1, 2),
                                        ('b', BSChar, -1, 0)])
     e = py.test.raises(TypeError, new_function_type, (BStruct,), BDouble)
-    msg = 'cannot pass as a argument a struct that was completed with verify()'
+    msg ='cannot pass as an argument a struct that was completed with verify()'
     assert msg in str(e.value)
 
 def test_new_charp():
diff --git a/testing/test_verify.py b/testing/test_verify.py
--- a/testing/test_verify.py
+++ b/testing/test_verify.py
@@ -574,7 +574,7 @@
         }
         int (*foo)(struct foo_s s) = &foo1;
     """)
-    msg = 'cannot pass as a argument a struct that was completed with verify()'
+    msg ='cannot pass as an argument a struct that was completed with verify()'
     assert msg in str(e.value)
 
 def test_func_returns_struct():


More information about the pypy-commit mailing list