[pypy-commit] pypy default: Fix test.
arigo
noreply at buildbot.pypy.org
Wed Mar 14 22:27:12 CET 2012
Author: Armin Rigo <arigo at tunes.org>
Branch:
Changeset: r53607:c76442a93b07
Date: 2012-03-14 14:23 -0700
http://bitbucket.org/pypy/pypy/changeset/c76442a93b07/
Log: Fix test.
diff --git a/pypy/translator/c/test/test_database.py b/pypy/translator/c/test/test_database.py
--- a/pypy/translator/c/test/test_database.py
+++ b/pypy/translator/c/test/test_database.py
@@ -232,7 +232,7 @@
B = Signed
db = LowLevelDatabase()
assert db.gettype(A) == "int @"
- assert db.gettype(B) == "long @"
+ assert db.gettype(B) == "Signed @"
def test_recursive_struct():
More information about the pypy-commit
mailing list