From fe28ca09a5332d160adba07052bb66693d6a6b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 6 Feb 2001 01:16:48 +0000 Subject: [PATCH] Add xml declaration into toxml testcase. --- Lib/test/test_minidom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py index 002b03670cb..457480349a4 100644 --- a/Lib/test/test_minidom.py +++ b/Lib/test/test_minidom.py @@ -272,7 +272,7 @@ def testAttributeRepr(): def testTextNodeRepr(): pass def testWriteXML(): - str = '' + str = '\n' dom = parseString(str) domstr = dom.toxml() dom.unlink()