[pypy-svn] r47928 - pypy/dist/pypy/lang/smalltalk/test
akuhn at codespeak.net
akuhn at codespeak.net
Thu Oct 25 15:51:04 CEST 2007
Author: akuhn
Date: Thu Oct 25 15:51:03 2007
New Revision: 47928
Modified:
pypy/dist/pypy/lang/smalltalk/test/test_miniimage.py
Log:
(akuhn, tverwaes, arigo)
added test to test for class of #doesNotUnderstand: in mini.image (which is, for some strange reason, an Array)
Modified: pypy/dist/pypy/lang/smalltalk/test/test_miniimage.py
==============================================================================
--- pypy/dist/pypy/lang/smalltalk/test/test_miniimage.py (original)
+++ pypy/dist/pypy/lang/smalltalk/test/test_miniimage.py Thu Oct 25 15:51:03 2007
@@ -144,7 +144,7 @@
image = get_image()
w = image.special(constants.SO_DOES_NOT_UNDERSTAND)
assert str(w) == "doesNotUnderstand:"
- assert str(w.getclass()) == "Array class" # for some strange reason not a symbol
+ assert str(w.getclass()) == "Symbol class" # for some strange reason not a symbol
"""SO_DOES_NOT_UNDERSTAND = 20
More information about the Pypy-commit
mailing list