Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-05-23 15:12:14 +0300
committerGitHub <noreply@github.com>2019-05-23 15:12:14 +0300
commit9606a8f18071ebc56211434972fe024a819a118c (patch)
tree27af6aa73fb982291020dae6d05d84a71237281a /mcs/class/System.ServiceModel
parentd96fa3ab317ec0ebf5fa26d0efab24c3142b8e29 (diff)
[bcl] Remove usages of mono-project.com/go-mono.com/google.com in tests (#14586)
Use example.com and example.org instead. Fixes https://github.com/mono/mono/issues/14585 Note that not all of the things I replaced make an actual network request but I thought it'd be nice to be consistent.
Diffstat (limited to 'mcs/class/System.ServiceModel')
-rw-r--r--mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/HttpTransportBindingElementTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/HttpTransportBindingElementTest.cs b/mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/HttpTransportBindingElementTest.cs
index a3ce81ad290..3bc6ac76b76 100644
--- a/mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/HttpTransportBindingElementTest.cs
+++ b/mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/HttpTransportBindingElementTest.cs
@@ -128,7 +128,7 @@ namespace MonoTests.System.ServiceModel.Channels
ctx.BuildInnerChannelFactory<IRequestChannel> ();
f.Open (); // required
IChannel c = f.CreateChannel (new EndpointAddress (
- "http://www.mono-project.com"));
+ "http://www.example.com"));
}
[Test]
@@ -143,7 +143,7 @@ namespace MonoTests.System.ServiceModel.Channels
IChannelFactory<IRequestChannel> f =
ctx.BuildInnerChannelFactory<IRequestChannel> ();
IChannel c = f.CreateChannel (new EndpointAddress (
- "http://www.mono-project.com"));
+ "http://www.example.com"));
}
[Test]