diff options
author | Justin Clark-Casey (justincc) | 2012-06-27 00:50:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-27 00:50:36 +0100 |
commit | bb48060b447a1b9c85f8652cd4bd177558d3bb0d (patch) | |
tree | b0ccf26e9bab745c156c8bae621997a497ec2874 /OpenSim/Region/CoreModules/Avatar/Inventory | |
parent | refactor: Move ScenePresence <-> AgentData attachments copying code into Atta... (diff) | |
download | opensim-SC-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.zip opensim-SC-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.gz opensim-SC-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.bz2 opensim-SC-bb48060b447a1b9c85f8652cd4bd177558d3bb0d.tar.xz |
Fix issue in InventoryArchiveTestCase where it didn't call down to OpenSimTestCase.SetUp()
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Inventory')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiveTestCase.cs | 3 |
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 | ||