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

0.7.4-extended
Justin Clark-Casey (justincc) 2012-10-16 23:50:45 +01:00
parent baa599e5b0
commit 713fdda7f8
1 changed files with 2 additions and 1 deletions

View File

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