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

Fred Drake cvs-admin at zope.org
Mon Oct 27 10:37:26 EST 2003


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

Modified Files:
      Tag: Zope-2_7-branch
	test_xmlparser.py 
Log Message:
Fix error in test data:  A test document used an unbound namespace
prefix while using Expat in namespace mode; this violates the "Prefix
Declared" namespace constraint.  Expat 1.95.7 now checks this
constraint properly, so raises an exception.


=== Zope/lib/python/TAL/tests/test_xmlparser.py 1.7 => 1.7.64.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	Mon Oct 27 10:37:25 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