aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index bc6cb60..4fe2684 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -119,7 +119,7 @@ namespace OpenSim.Tests.Common
119 119
120 public event DeRezObject OnDeRezObject; 120 public event DeRezObject OnDeRezObject;
121 public event RezRestoreToWorld OnRezRestoreToWorld; 121 public event RezRestoreToWorld OnRezRestoreToWorld;
122 public event Action<IClientAPI> OnRegionHandShakeReply; 122 public event Action<IClientAPI, uint> OnRegionHandShakeReply;
123 public event GenericCall1 OnRequestWearables; 123 public event GenericCall1 OnRequestWearables;
124 public event Action<IClientAPI, bool> OnCompleteMovementToRegion; 124 public event Action<IClientAPI, bool> OnCompleteMovementToRegion;
125 public event UpdateAgent OnPreAgentUpdate; 125 public event UpdateAgent OnPreAgentUpdate;
@@ -880,7 +880,7 @@ namespace OpenSim.Tests.Common
880 { 880 {
881 if (OnRegionHandShakeReply != null) 881 if (OnRegionHandShakeReply != null)
882 { 882 {
883 OnRegionHandShakeReply(this); 883 OnRegionHandShakeReply(this, 0);
884 } 884 }
885 } 885 }
886 886