aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs
diff options
context:
space:
mode:
authorUbitUmarov2015-11-16 18:43:11 +0000
committerUbitUmarov2015-11-16 18:43:11 +0000
commita2e376e9935def160e3cfb8feffb98ba79e2d513 (patch)
tree5295ca85ce316cb0d2f0f3a5e305850721f47c32 /OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs
parent work around some 'tests' errors (diff)
downloadopensim-SC_OLD-a2e376e9935def160e3cfb8feffb98ba79e2d513.zip
opensim-SC_OLD-a2e376e9935def160e3cfb8feffb98ba79e2d513.tar.gz
opensim-SC_OLD-a2e376e9935def160e3cfb8feffb98ba79e2d513.tar.bz2
opensim-SC_OLD-a2e376e9935def160e3cfb8feffb98ba79e2d513.tar.xz
work around some 'tests' error: contents of link folders are no longer sent
Diffstat (limited to '')
-rw-r--r--OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs b/OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs
index 2d5531a..94eef3b 100644
--- a/OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs
+++ b/OpenSim/Capabilities/Handlers/FetchInventory/Tests/FetchInventoryDescendents2HandlerTests.cs
@@ -215,10 +215,11 @@ namespace OpenSim.Capabilities.Handlers.FetchInventory.Tests
215 // Make sure the folder link is included 215 // Make sure the folder link is included
216 Assert.That(llsdresponse.Contains("Link to Objects folder"), Is.True, "Link to Objects folder is missing"); 216 Assert.That(llsdresponse.Contains("Link to Objects folder"), Is.True, "Link to Objects folder is missing");
217 217
218/* contents of link folder are not supposed to be listed
218 // Make sure the objects inside the Objects folder are included 219 // Make sure the objects inside the Objects folder are included
219 // Note: I'm not entirely sure this is needed, but that's what I found in the implementation 220 // Note: I'm not entirely sure this is needed, but that's what I found in the implementation
220 Assert.That(llsdresponse.Contains("Some Object"), Is.True, "Some Object item (contents of the source) is missing"); 221 Assert.That(llsdresponse.Contains("Some Object"), Is.True, "Some Object item (contents of the source) is missing");
221 222*/
222 // Make sure that the source item is before the link item 223 // Make sure that the source item is before the link item
223 pos1 = llsdresponse.IndexOf("Some Object"); 224 pos1 = llsdresponse.IndexOf("Some Object");
224 pos2 = llsdresponse.IndexOf("Link to Objects folder"); 225 pos2 = llsdresponse.IndexOf("Link to Objects folder");