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

0.7.4.1
Justin Clark-Casey (justincc) 2012-06-27 00:50:36 +01:00
parent d043213317
commit bb48060b44
1 changed files with 2 additions and 1 deletions

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);
}