Commit 8a23bcd0 authored by Fred Drake's avatar Fred Drake

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.
parent d4fd5cf2
......@@ -185,8 +185,8 @@ text
])
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"),
])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment