aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-07-11 23:11:35 +0100
committerJustin Clark-Casey (justincc)2013-07-11 23:11:35 +0100
commite15a15688bbee6b7a76bb29f7879e0c59491449a (patch)
tree74cc4677b1dd967f16d359e79283432cb49edeac /OpenSim/Region/CoreModules/Scripting
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-e15a15688bbee6b7a76bb29f7879e0c59491449a.zip
opensim-SC_OLD-e15a15688bbee6b7a76bb29f7879e0c59491449a.tar.gz
opensim-SC_OLD-e15a15688bbee6b7a76bb29f7879e0c59491449a.tar.bz2
opensim-SC_OLD-e15a15688bbee6b7a76bb29f7879e0c59491449a.tar.xz
minor: Take out unnecessary clumsy sleep at the end of regression Test404Response().
This wasn't actually necessary in the end but was accidentally left in.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/HttpRequest/Tests/ScriptsHttpRequestsTests.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/HttpRequest/Tests/ScriptsHttpRequestsTests.cs b/OpenSim/Region/CoreModules/Scripting/HttpRequest/Tests/ScriptsHttpRequestsTests.cs
index f638f91..180a046 100644
--- a/OpenSim/Region/CoreModules/Scripting/HttpRequest/Tests/ScriptsHttpRequestsTests.cs
+++ b/OpenSim/Region/CoreModules/Scripting/HttpRequest/Tests/ScriptsHttpRequestsTests.cs
@@ -191,9 +191,6 @@ namespace OpenSim.Region.CoreModules.Scripting.HttpRequest.Tests
191 hr.Url = "test://something"; 191 hr.Url = "test://something";
192 hr.SendRequest(); 192 hr.SendRequest();
193 193
194 while (!hr.Finished)
195 Thread.Sleep(100);
196
197 Assert.That(hr.Status, Is.EqualTo((int)HttpStatusCode.NotFound)); 194 Assert.That(hr.Status, Is.EqualTo((int)HttpStatusCode.NotFound));
198 Assert.That(hr.ResponseBody, Is.EqualTo(rawResponse)); 195 Assert.That(hr.ResponseBody, Is.EqualTo(rawResponse));
199 } 196 }