From 304c78bbbbc9a176d70d2967a3f703f2e545565c Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Sun, 6 Sep 2009 19:30:03 +0100 Subject: Temporarily re-enable save iar test by manually insert the item into the old cache during the test --- OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'OpenSim/Tests/Common/Mock') diff --git a/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs b/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs index ce116f2..a444d91 100644 --- a/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs +++ b/OpenSim/Tests/Common/Mock/TestInventoryDataPlugin.cs @@ -154,7 +154,13 @@ namespace OpenSim.Tests.Common.Mock m_folders.Remove(folderId); } - public void addInventoryItem(InventoryItemBase item) { m_items[item.ID] = item; } + public void addInventoryItem(InventoryItemBase item) + { + m_log.DebugFormat( + "[MOCK INV DB]: Adding inventory item {0} {1} in {2}", item.Name, item.ID, item.Folder); + + m_items[item.ID] = item; + } public void updateInventoryItem(InventoryItemBase item) { addInventoryItem(item); } -- cgit v1.1