From 3555c0c3f3306de5dbdf504f595a1f6abc032374 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Fri, 29 Aug 2014 18:14:47 +0100 Subject: [PATCH] Fix recent regression test TestDeserializeXmlObjectWithOtherParts() which was not meant to indent the input xml --- .../CoreModules/World/Serialiser/Tests/SerialiserTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs b/OpenSim/Region/CoreModules/World/Serialiser/Tests/SerialiserTests.cs index 52203f76cc..94cd9cd9dd 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 { using (XmlTextWriter xtw = new XmlTextWriter(sw)) { - xtw.Formatting = Formatting.Indented; +// xtw.Formatting = Formatting.Indented; xdoc.WriteTo(xtw); } }