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)