extend phantom flag regression test to toggle back off

This commit is contained in:
Justin Clark-Casey (justincc)
2011-08-06 00:22:14 +01:00
parent c6c91e6599
commit cba40de109
2 changed files with 7 additions and 0 deletions

View File

@@ -57,6 +57,10 @@ namespace OpenSim.Region.Framework.Scenes.Tests
// Console.WriteLine("so.RootPart.Flags [{0}]", so.RootPart.Flags);
Assert.That(rootPart.Flags, Is.EqualTo(PrimFlags.Phantom));
so.ScriptSetPhantomStatus(false);
Assert.That(rootPart.Flags, Is.EqualTo(PrimFlags.None));
}
}
}