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

This commit is contained in:
Justin Clark-Casey (justincc)
2012-10-16 23:50:45 +01:00
parent 4e5b2346a5
commit f35826eb31

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();
}