aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorUbitUmarov2019-01-26 16:42:42 +0000
committerUbitUmarov2019-01-26 16:42:42 +0000
commit695d807696709920eb12c2d4bd8af07af922566d (patch)
treed2ef87a97b3505895e79387eb176fde7c373e630 /OpenSim/Tests
parentok i said all ( lie ) (diff)
downloadopensim-SC-695d807696709920eb12c2d4bd8af07af922566d.zip
opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.gz
opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.bz2
opensim-SC-695d807696709920eb12c2d4bd8af07af922566d.tar.xz
change encoding of a few event caps messages
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs b/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs
index 9880c91..b17425a 100644
--- a/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs
+++ b/OpenSim/Tests/Common/Mock/TestEventQueueGetModule.cs
@@ -30,6 +30,7 @@ using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Net; 31using System.Net;
32using System.Reflection; 32using System.Reflection;
33using System.Text;
33using System.Threading; 34using System.Threading;
34using log4net; 35using log4net;
35using Nini.Config; 36using Nini.Config;
@@ -183,5 +184,15 @@ namespace OpenSim.Tests.Common
183 { 184 {
184 AddEvent(avatarID, "partPhysicsProperties", localID, physhapetype, density, friction, bounce, gravmod); 185 AddEvent(avatarID, "partPhysicsProperties", localID, physhapetype, density, friction, bounce, gravmod);
185 } 186 }
186 } 187
188 public StringBuilder StartEvent(string eventName)
189 {
190 return null;
191 }
192
193 public string EndEvent(StringBuilder sb)
194 {
195 return "";
196 }
197}
187} \ No newline at end of file 198} \ No newline at end of file