minor: Remove some wrong comments in attachments regression tests

0.7.3-extended
Justin Clark-Casey (justincc) 2012-07-06 23:13:00 +01:00
parent f17f58ac2a
commit ccf8e89193
1 changed files with 0 additions and 2 deletions

View File

@ -407,7 +407,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments.Tests
Assert.That(actualSceneBAtt.Name, Is.EqualTo(attItem.Name));
Assert.That(actualSceneBAtt.AttachmentPoint, Is.EqualTo((uint)AttachmentPoint.Chest));
// Teleporting attachments should not end up in the scene graph
Assert.That(sceneB.GetSceneObjectGroups().Count, Is.EqualTo(1));
// Check attachments have been removed from sceneA
@ -422,7 +421,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments.Tests
List<SceneObjectGroup> actualSceneAAttachments = afterTeleportSceneASp.GetAttachments();
Assert.That(actualSceneAAttachments.Count, Is.EqualTo(0));
// Teleporting attachments should not end up in the scene graph
Assert.That(sceneA.GetSceneObjectGroups().Count, Is.EqualTo(0));
}