Commenting out new event until I can fix OpenSim tests. Currently, testing objects does not create a Scene or EventManager so triggering events crashes some tests

iar_mods
Dan Lake 2012-02-02 18:19:22 -08:00
parent ed846f11f1
commit 61adf36339
1 changed files with 6 additions and 6 deletions

View File

@ -2729,9 +2729,9 @@ namespace OpenSim.Region.Framework.Scenes
if (ParentGroup == null) if (ParentGroup == null)
return; return;
// When running OpenSim tests, EventManager can be null. Maybe tests should create an EventManager. // When running OpenSim tests, Scene (and EventManager can be null).
if(ParentGroup.Scene.EventManager != null) // Need to fix tests before we can trigger this here
ParentGroup.Scene.EventManager.TriggerSceneObjectPartUpdated(this); // ParentGroup.Scene.EventManager.TriggerSceneObjectPartUpdated(this);
ParentGroup.QueueForUpdateCheck(); ParentGroup.QueueForUpdateCheck();
@ -2765,9 +2765,9 @@ namespace OpenSim.Region.Framework.Scenes
if (ParentGroup == null) if (ParentGroup == null)
return; return;
// When running OpenSim tests, EventManager can be null. Maybe tests should create an EventManager. // When running OpenSim tests, Scene (and EventManager can be null).
if (ParentGroup.Scene.EventManager != null) // Need to fix tests before we can trigger this here
ParentGroup.Scene.EventManager.TriggerSceneObjectPartUpdated(this); // ParentGroup.Scene.EventManager.TriggerSceneObjectPartUpdated(this);
// This was pulled from SceneViewer. Attachments always receive full updates. // This was pulled from SceneViewer. Attachments always receive full updates.
// I could not verify if this is a requirement but this maintains existing behavior // I could not verify if this is a requirement but this maintains existing behavior