[Zope-Checkins] CVS: Zope/lib/python/TAL/tests - test_xmlparser.py:1.7.2.1

Fred Drake cvs-admin at zope.org
Wed Nov 19 13:03:34 EST 2003


Update of /cvs-repository/Zope/lib/python/TAL/tests
In directory cvs.zope.org:/tmp/cvs-serv23530/lib/python/TAL/tests

Modified Files:
      Tag: Zope-2_6-branch
	test_xmlparser.py 
Log Message:
Do not use unknown prefixes in XML; Expat now (properly) detects these
and raises an exception.
Already fixed in Zope 2.7 and the trunk.


=== Zope/lib/python/TAL/tests/test_xmlparser.py 1.7 => 1.7.2.1 ===
--- Zope/lib/python/TAL/tests/test_xmlparser.py:1.7	Thu Aug 22 15:43:08 2002
+++ Zope/lib/python/TAL/tests/test_xmlparser.py	Wed Nov 19 13:03:34 2003
@@ -185,8 +185,8 @@
             ])
 
     def check_attr_funky_names(self):
-        self._run_check("""<a a.b='v' c:d='v' e-f='v'/>""", [
-            ("starttag", "a", ["a.b", "v", "c:d", "v", "e-f", "v"]),
+        self._run_check("""<a a.b='v' e-f='v'/>""", [
+            ("starttag", "a", ["a.b", "v", "e-f", "v"]),
             ("endtag", "a"),
             ])
 




More information about the Zope-Checkins mailing list