Fix issue in InventoryArchiveTestCase where it didn't call down to OpenSimTestCase.SetUp()

This commit is contained in:
Justin Clark-Casey (justincc)
2012-06-27 00:50:36 +01:00
parent d043213317
commit bb48060b44

View File

@@ -84,8 +84,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
protected string m_coaItemName = "Coalesced Item";
[SetUp]
public virtual void SetUp()
public override void SetUp()
{
base.SetUp();
m_iarStream = new MemoryStream(m_iarStreamBytes);
}