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.
cpu-performance
Justin Clark-Casey (justincc) 2013-07-11 23:11:35 +01:00
parent f57f49eede
commit e15a15688b
1 changed files with 0 additions and 3 deletions

View File

@ -191,9 +191,6 @@ namespace OpenSim.Region.CoreModules.Scripting.HttpRequest.Tests
hr.Url = "test://something";
hr.SendRequest();
while (!hr.Finished)
Thread.Sleep(100);
Assert.That(hr.Status, Is.EqualTo((int)HttpStatusCode.NotFound));
Assert.That(hr.ResponseBody, Is.EqualTo(rawResponse));
}