diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs index 4ade40d..9d28fc7 100644 --- a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs +++ b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs | |||
@@ -55,19 +55,19 @@ namespace OpenSim.Tests.Common.Mock | |||
55 | 55 | ||
56 | public TestCommunicationsManager(NetworkServersInfo serversInfo) | 56 | public TestCommunicationsManager(NetworkServersInfo serversInfo) |
57 | : base(serversInfo, new BaseHttpServer(666), null, false, null) | 57 | : base(serversInfo, new BaseHttpServer(666), null, false, null) |
58 | { | 58 | { |
59 | m_userDataPlugin = new TestUserDataPlugin(); | ||
60 | m_inventoryDataPlugin = new TestInventoryDataPlugin(); | ||
61 | |||
62 | SQLAssetServer assetService = new SQLAssetServer(new TestAssetDataPlugin()); | 59 | SQLAssetServer assetService = new SQLAssetServer(new TestAssetDataPlugin()); |
63 | m_assetCache = new AssetCache(assetService); | 60 | m_assetCache = new AssetCache(assetService); |
64 | 61 | ||
65 | LocalInventoryService lis = new LocalInventoryService(); | 62 | LocalInventoryService lis = new LocalInventoryService(); |
63 | m_inventoryDataPlugin = new TestInventoryDataPlugin(); | ||
66 | lis.AddPlugin(m_inventoryDataPlugin); | 64 | lis.AddPlugin(m_inventoryDataPlugin); |
67 | m_interServiceInventoryService = lis; | 65 | m_interServiceInventoryService = lis; |
68 | AddInventoryService(lis); | 66 | AddInventoryService(lis); |
69 | 67 | ||
70 | LocalUserServices lus = new LocalUserServices(991, 992, this); | 68 | LocalUserServices lus = new LocalUserServices(991, 992, this); |
69 | lus.AddPlugin(new TemporaryUserProfilePlugin()); | ||
70 | m_userDataPlugin = new TestUserDataPlugin(); | ||
71 | lus.AddPlugin(m_userDataPlugin); | 71 | lus.AddPlugin(m_userDataPlugin); |
72 | m_userService = lus; | 72 | m_userService = lus; |
73 | m_userAdminService = lus; | 73 | m_userAdminService = lus; |