Fix a test-breakage introduced in r9144

This commit is contained in:
Homer Horwitz
2009-04-14 20:44:51 +00:00
parent 0413d052a3
commit 2a321746fd

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);
}