[pypy-svn] r69445 - pypy/branch/io-lang/pypy/lang/io/test

david at codespeak.net david at codespeak.net
Thu Nov 19 15:26:26 CET 2009


Author: david
Date: Thu Nov 19 15:26:25 2009
New Revision: 69445

Modified:
   pypy/branch/io-lang/pypy/lang/io/test/test_parse.py
Log:
Fix test

Modified: pypy/branch/io-lang/pypy/lang/io/test/test_parse.py
==============================================================================
--- pypy/branch/io-lang/pypy/lang/io/test/test_parse.py	(original)
+++ pypy/branch/io-lang/pypy/lang/io/test/test_parse.py	Thu Nov 19 15:26:25 2009
@@ -19,6 +19,6 @@
     input = "a := b"
     ast = parse(input, space)
     a = W_Message(space, '"a"', [])
-    a.literal_value = space.w_immutable_sequence.clone_and_init('a')
+    # a.literal_value = space.w_immutable_sequence.clone_and_init('a')
     
     assert ast == W_Message(space, "setSlot", [a, W_Message(space, 'b', [])], )
\ No newline at end of file



More information about the Pypy-commit mailing list