* Resolve unit test failure introduced in r9148 (probably)
* Have the test scene always return success for session id authentication for now0.6.5-rc1
parent
119aeeed7d
commit
fa9b9126ee
|
@ -213,7 +213,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
PhysicsScene.OnJointDeactivated += jointDeactivated;
|
PhysicsScene.OnJointDeactivated += jointDeactivated;
|
||||||
PhysicsScene.OnJointErrorMessage += jointErrorMessage;
|
PhysicsScene.OnJointErrorMessage += jointErrorMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,19 @@ namespace OpenSim.Tests.Common.Mock
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Temporarily override session authentication for tests (namely teleport).
|
||||||
|
/// </summary>
|
||||||
|
///
|
||||||
|
/// TODO: This needs to be mocked out properly.
|
||||||
|
///
|
||||||
|
/// <param name="agent"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public override bool AuthenticateUser(AgentCircuitData agent)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public AsyncSceneObjectGroupDeleter SceneObjectGroupDeleter
|
public AsyncSceneObjectGroupDeleter SceneObjectGroupDeleter
|
||||||
{
|
{
|
||||||
get { return m_asyncSceneObjectDeleter; }
|
get { return m_asyncSceneObjectDeleter; }
|
||||||
|
|
Loading…
Reference in New Issue