Author: Romain Guillebert <romain...@gmail.com>
Branch: py3k
Changeset: r51405:f3ca10db7f5e
Date: 2012-01-17 14:44 +0100
http://bitbucket.org/pypy/pypy/changeset/f3ca10db7f5e/

Log:    (antocuni,romain) Adapt the test to py3k

diff --git a/pypy/interpreter/pyparser/test/test_pyparse.py 
b/pypy/interpreter/pyparser/test/test_pyparse.py
--- a/pypy/interpreter/pyparser/test/test_pyparse.py
+++ b/pypy/interpreter/pyparser/test/test_pyparse.py
@@ -38,7 +38,7 @@
 """, info=info)
         assert tree.type == syms.file_input
         assert info.encoding == "iso-8859-1"
-        sentence = u"u'Die M&#228;nner &#228;rgen sich!'"
+        sentence = u"'Die M&#228;nner &#228;rgen sich!'"
         input = (u"# coding: utf-7\nstuff = %s" % (sentence,)).encode("utf-7")
         tree = self.parse(input, info=info)
         assert info.encoding == "utf-7"
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to