Fix recent regression test TestDeserializeXmlObjectWithOtherParts() which was not meant to indent the input xml

This commit is contained in:
Justin Clark-Casey (justincc)
2014-08-29 18:14:47 +01:00
parent 305c3e668a
commit 3555c0c3f3

View File

@@ -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);
}
}