diff options
author | Justin Clark-Casey (justincc) | 2013-08-16 23:45:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-16 23:45:04 +0100 |
commit | 1624522761b0634cea1089dd02cc9af7d30c356c (patch) | |
tree | 5e67c18465ccbbf21183bce6e9efd28516f21bba /OpenSim/Region/CoreModules/Avatar/Attachments/Tests | |
parent | Packet headers are not zero-encoded so don't try to zero-decode these in Pack... (diff) | |
download | opensim-SC-1624522761b0634cea1089dd02cc9af7d30c356c.zip opensim-SC-1624522761b0634cea1089dd02cc9af7d30c356c.tar.gz opensim-SC-1624522761b0634cea1089dd02cc9af7d30c356c.tar.bz2 opensim-SC-1624522761b0634cea1089dd02cc9af7d30c356c.tar.xz |
refactor: Make AttachmentModulesTests.TestSameSimulatorNeighbouringRegionsTeleportV2 use already available TestClient handle rather than retrieving it via the ScenePresence
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Attachments/Tests')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs index 1fcef20..bdfef32 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs | |||
@@ -965,7 +965,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments.Tests | |||
965 | // Both these operations will occur on different threads and will wait for each other. | 965 | // Both these operations will occur on different threads and will wait for each other. |
966 | // We have to do this via ThreadPool directly since FireAndForget has been switched to sync for the V1 | 966 | // We have to do this via ThreadPool directly since FireAndForget has been switched to sync for the V1 |
967 | // test protocol, where we are trying to avoid unpredictable async operations in regression tests. | 967 | // test protocol, where we are trying to avoid unpredictable async operations in regression tests. |
968 | ((TestClient)beforeTeleportSp.ControllingClient).OnTestClientSendRegionTeleport | 968 | tc.OnTestClientSendRegionTeleport |
969 | += (regionHandle, simAccess, regionExternalEndPoint, locationID, flags, capsURL) | 969 | += (regionHandle, simAccess, regionExternalEndPoint, locationID, flags, capsURL) |
970 | => ThreadPool.UnsafeQueueUserWorkItem(o => destinationTestClients[0].CompleteMovement(), null); | 970 | => ThreadPool.UnsafeQueueUserWorkItem(o => destinationTestClients[0].CompleteMovement(), null); |
971 | 971 | ||