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

0.8-extended
Justin Clark-Casey (justincc) 2014-08-29 18:14:47 +01:00 committed by Justin Clark-Casey
parent 8acb863060
commit 38df5f1e9b
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ namespace OpenSim.Region.CoreModules.World.Serialiser.Tests
{ {
using (XmlTextWriter xtw = new XmlTextWriter(sw)) using (XmlTextWriter xtw = new XmlTextWriter(sw))
{ {
xtw.Formatting = Formatting.Indented; // xtw.Formatting = Formatting.Indented;
xdoc.WriteTo(xtw); xdoc.WriteTo(xtw);
} }
} }