diff options
author | Justin Clark-Casey (justincc) | 2014-08-29 18:14:47 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-08-29 18:14:47 +0100 |
commit | 3555c0c3f3306de5dbdf504f595a1f6abc032374 (patch) | |
tree | 96d241a4686cb4fc86a1fad102bde79a4e8dd93d | |
parent | Add regression test for deserializing xml objects with more than one non-root... (diff) | |
download | opensim-SC-3555c0c3f3306de5dbdf504f595a1f6abc032374.zip opensim-SC-3555c0c3f3306de5dbdf504f595a1f6abc032374.tar.gz opensim-SC-3555c0c3f3306de5dbdf504f595a1f6abc032374.tar.bz2 opensim-SC-3555c0c3f3306de5dbdf504f595a1f6abc032374.tar.xz |
Fix recent regression test TestDeserializeXmlObjectWithOtherParts() which was not meant to indent the input xml
-rw-r--r-- | OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs b/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs index 52203f7..94cd9cd 100644 --- a/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs +++ b/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs | |||
@@ -635,7 +635,7 @@ namespace OpenSim.Region.CoreModules.World.Serialiser.Tests | |||
635 | { | 635 | { |
636 | using (XmlTextWriter xtw = new XmlTextWriter(sw)) | 636 | using (XmlTextWriter xtw = new XmlTextWriter(sw)) |
637 | { | 637 | { |
638 | xtw.Formatting = Formatting.Indented; | 638 | // xtw.Formatting = Formatting.Indented; |
639 | xdoc.WriteTo(xtw); | 639 | xdoc.WriteTo(xtw); |
640 | } | 640 | } |
641 | } | 641 | } |