minor: Fix more compiler warnings in CoreModules tests by properly overriding OpenSimTestCase.SetUp()

This commit is contained in:
Justin Clark-Casey (justincc)
2012-12-05 23:44:12 +00:00
parent ec765de7e5
commit e60fe958df
5 changed files with 16 additions and 5 deletions

View File

@@ -57,8 +57,10 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess.Tests
protected TestClient m_tc;
[SetUp]
public void SetUp()
public override void SetUp()
{
base.SetUp();
m_iam = new BasicInventoryAccessModule();
IConfigSource config = new IniConfigSource();