minor: Make BasicCircuitTests.SetUp() call overriden base method instead of ignoring it.

connector_plugin
Justin Clark-Casey (justincc) 2012-10-16 23:50:45 +01:00
parent 4e5b2346a5
commit f35826eb31
1 changed files with 2 additions and 1 deletions

View File

@ -65,8 +65,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
}
[SetUp]
public void SetUp()
public override void SetUp()
{
base.SetUp();
m_scene = new SceneHelpers().SetupScene();
}