Commit 6a7768ae authored by Lars Gustäbel's avatar Lars Gustäbel

Fixed misleading qname in test_xmlgen_ns (reported by loewis).

parent fc1b60e3
...@@ -111,8 +111,8 @@ def test_xmlgen_ns(): ...@@ -111,8 +111,8 @@ def test_xmlgen_ns():
gen.startDocument() gen.startDocument()
gen.startPrefixMapping("ns1", ns_uri) gen.startPrefixMapping("ns1", ns_uri)
gen.startElementNS((ns_uri, "doc"), "ns:doc", {}) gen.startElementNS((ns_uri, "doc"), "ns1:doc", {})
gen.endElementNS((ns_uri, "doc"), "ns:doc") gen.endElementNS((ns_uri, "doc"), "ns1:doc")
gen.endPrefixMapping("ns1") gen.endPrefixMapping("ns1")
gen.endDocument() gen.endDocument()
......
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