From 5f91b37818f431ca91ddd65088f7f84e0c2b55d1 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Mon, 12 Aug 2002 12:13:01 +0000 Subject: [PATCH] fixed the test results, indenting behaviour changed slightly Daniel * python/tests/serialize.py: fixed the test results, indenting behaviour changed slightly Daniel --- ChangeLog | 5 +++++ python/tests/serialize.py | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index fd1b2cbb..7d4dba68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard + + * python/tests/serialize.py: fixed the test results, indenting + behaviour changed slightly + Thu Aug 8 11:00:26 2002 Aleksey Sanin * win32/dsp/libxml2.def.src win32/libxml2.def.src: added diff --git a/python/tests/serialize.py b/python/tests/serialize.py index b79d0a5d..984d4eb9 100755 --- a/python/tests/serialize.py +++ b/python/tests/serialize.py @@ -24,7 +24,7 @@ if str != """ str = doc.serialize(format=1) if str != """ -hello + hello """: print "error serializing XML document 3" @@ -32,7 +32,7 @@ if str != """ str = doc.serialize("iso-8859-1", 1) if str != """ -hello + hello """: print "error serializing XML document 4" @@ -52,13 +52,13 @@ if str != """hello""": sys.exit(1) str = root.serialize(format=1) if str != """ -hello + hello """: print "error serializing XML root 3" sys.exit(1) str = root.serialize("iso-8859-1", 1) if str != """ -hello + hello """: print "error serializing XML root 4" sys.exit(1)