[Python-checkins] CVS: python/dist/src/Lib/test test_sax.py,1.6,1.7

Lars Marius Garshol python-dev@python.org
Wed, 27 Sep 2000 01:12:21 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv6167

Modified Files:
	test_sax.py 
Log Message:
Fixed misleading qname in test_xmlgen_ns (reported by loewis).


Index: test_sax.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sax.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** test_sax.py	2000/09/24 20:57:04	1.6
--- test_sax.py	2000/09/27 08:12:17	1.7
***************
*** 112,117 ****
      gen.startDocument()
      gen.startPrefixMapping("ns1", ns_uri)
!     gen.startElementNS((ns_uri, "doc"), "ns:doc", {})
!     gen.endElementNS((ns_uri, "doc"), "ns:doc")
      gen.endPrefixMapping("ns1")
      gen.endDocument()
--- 112,117 ----
      gen.startDocument()
      gen.startPrefixMapping("ns1", ns_uri)
!     gen.startElementNS((ns_uri, "doc"), "ns1:doc", {})
!     gen.endElementNS((ns_uri, "doc"), "ns1:doc")
      gen.endPrefixMapping("ns1")
      gen.endDocument()