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

@@ -53,8 +53,10 @@ namespace OpenSim.Region.CoreModules.Asset.Tests
protected FlotsamAssetCache m_cache;
[SetUp]
public void SetUp()
public override void SetUp()
{
base.SetUp();
IConfigSource config = new IniConfigSource();
config.AddConfig("Modules");