aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Tests
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-11 20:58:11 +0000
committerJustin Clarke Casey2008-12-11 20:58:11 +0000
commit80e267dcfec335c5402922c4eb5587df9603f94d (patch)
tree0e81c20ec152e48dd52ed551a727d491d326bc95 /OpenSim/Framework/Communications/Tests
parentmake a couple of other config default to make the example ini to give us (diff)
downloadopensim-SC_OLD-80e267dcfec335c5402922c4eb5587df9603f94d.zip
opensim-SC_OLD-80e267dcfec335c5402922c4eb5587df9603f94d.tar.gz
opensim-SC_OLD-80e267dcfec335c5402922c4eb5587df9603f94d.tar.bz2
opensim-SC_OLD-80e267dcfec335c5402922c4eb5587df9603f94d.tar.xz
* refactor: Stop exposing InventoryFolderImpl.SubFolders publicly
Diffstat (limited to 'OpenSim/Framework/Communications/Tests')
-rw-r--r--OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs
index f209fd4..9c07734 100644
--- a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs
+++ b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs
@@ -106,11 +106,11 @@ namespace OpenSim.Framework.Communications.Tests
106 CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId); 106 CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId);
107 107
108 UUID folderId = UUID.Parse("00000000-0000-0000-0000-000000000010"); 108 UUID folderId = UUID.Parse("00000000-0000-0000-0000-000000000010");
109 Assert.That(userInfo.RootFolder.SubFolders.ContainsKey(folderId), Is.False); 109 Assert.That(userInfo.RootFolder.ContainsChildFolder(folderId), Is.False);
110 110
111 userInfo.CreateFolder("testFolder", folderId, (ushort)AssetType.Animation, userInfo.RootFolder.ID); 111 userInfo.CreateFolder("testFolder", folderId, (ushort)AssetType.Animation, userInfo.RootFolder.ID);
112 Assert.That(inventoryDataPlugin.getInventoryFolder(folderId), Is.Not.Null); 112 Assert.That(inventoryDataPlugin.getInventoryFolder(folderId), Is.Not.Null);
113 Assert.That(userInfo.RootFolder.SubFolders.ContainsKey(folderId), Is.True); 113 Assert.That(userInfo.RootFolder.ContainsChildFolder(folderId), Is.True);
114 } 114 }
115 115
116 /// <summary> 116 /// <summary>