Fix a test-breakage introduced in r9144

0.6.5-rc1
Homer Horwitz 2009-04-14 20:44:51 +00:00
parent 0413d052a3
commit 2a321746fd
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ namespace OpenSim.Framework.Communications.Tests
Regex capsSeedPattern
= new Regex("^http://"
+ m_regionExternalName
+ ":9000/CAPS/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{8}0000/$");
+ ":9000/CAPS/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}0000/$");
Assert.That(capsSeedPattern.IsMatch((string)responseData["seed_capability"]), Is.True);
}
@ -160,7 +160,7 @@ namespace OpenSim.Framework.Communications.Tests
Regex capsSeedPattern
= new Regex("^http://"
+ m_regionExternalName
+ ":9000/CAPS/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{8}0000/$");
+ ":9000/CAPS/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}0000/$");
Assert.That(capsSeedPattern.IsMatch((string)responseData["seed_capability"]), Is.True);
}