aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-10-16 23:50:45 +0100
committerJustin Clark-Casey (justincc)2012-10-16 23:50:45 +0100
commitf35826eb31e2f286e3ae5bdbcf8c3beb4723d5d9 (patch)
tree6a326f9225f80dabff5a61af9e4bea7f34dd069d /OpenSim/Region/ClientStack/Linden
parentAdd LastMemoryChurn stat using existing data so we can more quickly tell how ... (diff)
downloadopensim-SC_OLD-f35826eb31e2f286e3ae5bdbcf8c3beb4723d5d9.zip
opensim-SC_OLD-f35826eb31e2f286e3ae5bdbcf8c3beb4723d5d9.tar.gz
opensim-SC_OLD-f35826eb31e2f286e3ae5bdbcf8c3beb4723d5d9.tar.bz2
opensim-SC_OLD-f35826eb31e2f286e3ae5bdbcf8c3beb4723d5d9.tar.xz
minor: Make BasicCircuitTests.SetUp() call overriden base method instead of ignoring it.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/Tests/BasicCircuitTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/Linden/UDP/Tests/BasicCircuitTests.cs
index fa9378c..556df30 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/Tests/BasicCircuitTests.cs
@@ -65,8 +65,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
65 } 65 }
66 66
67 [SetUp] 67 [SetUp]
68 public void SetUp() 68 public override void SetUp()
69 { 69 {
70 base.SetUp();
70 m_scene = new SceneHelpers().SetupScene(); 71 m_scene = new SceneHelpers().SetupScene();
71 } 72 }
72 73