Correctly override and call base OpenSimTestCase.SetUp() method in GridConnectorsTests and ArchiverTests.

Remove unrelated compile warning from AttachmentsModuleTests.
This commit is contained in:
Justin Clark-Casey (justincc)
2012-09-19 01:06:42 +01:00
parent e50155ebca
commit 967d42d393
3 changed files with 11 additions and 6 deletions

View File

@@ -65,8 +65,11 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests
protected TaskInventoryItem m_soundItem;
[SetUp]
public void SetUp()
public override void SetUp()
{
base.SetUp();
// FIXME: Do something about this - relying on statics in unit tests causes trouble sooner or later
new SceneManager();
m_archiverModule = new ArchiverModule();