[pypy-svn] pypy default: Fixed indentation in the malformed_xml test

berdario commits-noreply at bitbucket.org
Thu Apr 28 18:35:01 CEST 2011


Author: Dario Bertini <berdario at gmail.com>
Branch: 
Changeset: r43732:349cda0eface
Date: 2011-04-28 18:30 +0200
http://bitbucket.org/pypy/pypy/changeset/349cda0eface/

Log:	Fixed indentation in the malformed_xml test

diff --git a/pypy/module/pyexpat/test/test_parser.py b/pypy/module/pyexpat/test/test_parser.py
--- a/pypy/module/pyexpat/test/test_parser.py
+++ b/pypy/module/pyexpat/test/test_parser.py
@@ -33,10 +33,10 @@
         import sys
         if sys.platform == "darwin":
             skip("Fails with the version of expat on Mac OS 10.6.6")
-	import pyexpat
+        import pyexpat
         xml = "\0\r\n"
-	parser = pyexpat.ParserCreate()
-	raises(pyexpat.ExpatError, "parser.Parse(xml, True)")
+        parser = pyexpat.ParserCreate()
+        raises(pyexpat.ExpatError, "parser.Parse(xml, True)")
 
     def test_encoding(self):
         import pyexpat


More information about the Pypy-commit mailing list