aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-06-27 00:50:36 +0100
committerJustin Clark-Casey (justincc)2012-06-27 00:50:36 +0100
commitbb48060b447a1b9c85f8652cd4bd177558d3bb0d (patch)
treeb0ccf26e9bab745c156c8bae621997a497ec2874 /OpenSim/Region/CoreModules/Avatar/Inventory/Archiver
parentrefactor: Move ScenePresence <-> AgentData attachments copying code into Atta... (diff)
downloadopensim-SC_OLD-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.zip
opensim-SC_OLD-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.gz
opensim-SC_OLD-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.bz2
opensim-SC_OLD-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.xz
Fix issue in InventoryArchiveTestCase where it didn't call down to OpenSimTestCase.SetUp()
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Inventory/Archiver')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs
index f9d4b78..1056865 100644
--- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs
@@ -84,8 +84,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
84 protected string m_coaItemName = "Coalesced Item"; 84 protected string m_coaItemName = "Coalesced Item";
85 85
86 [SetUp] 86 [SetUp]
87 public virtual void SetUp() 87 public override void SetUp()
88 { 88 {
89 base.SetUp();
89 m_iarStream = new MemoryStream(m_iarStreamBytes); 90 m_iarStream = new MemoryStream(m_iarStreamBytes);
90 } 91 }
91 92