Imported Upstream version 6.4.0.137

Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-07-26 19:53:28 +00:00
parent e9207cf623
commit ef583813eb
2712 changed files with 74169 additions and 40587 deletions

View File

@ -31,7 +31,7 @@ namespace MonoTests.System.Security.Cryptography.Xml {
[Test]
public void TestNewKeyNode ()
{
string uri = "http://www.go-mono.com/";
string uri = "http://www.example.com/";
KeyInfoRetrievalMethod uri1 = new KeyInfoRetrievalMethod ();
uri1.Uri = uri;
XmlElement xel = uri1.GetXml ();
@ -46,7 +46,7 @@ namespace MonoTests.System.Security.Cryptography.Xml {
[Test]
public void TestImportKeyNode ()
{
string value = "<RetrievalMethod URI=\"http://www.go-mono.com/\" xmlns=\"http://www.w3.org/2000/09/xmldsig#\" />";
string value = "<RetrievalMethod URI=\"http://www.example.com/\" xmlns=\"http://www.w3.org/2000/09/xmldsig#\" />";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (value);
@ -58,7 +58,7 @@ namespace MonoTests.System.Security.Cryptography.Xml {
Assert.AreEqual (value, s, "Xml");
// verify that property is parsed correctly
Assert.AreEqual ("http://www.go-mono.com/", uri1.Uri, "Uri");
Assert.AreEqual ("http://www.example.com/", uri1.Uri, "Uri");
}
[Test]