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/Mono.Security
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/Mono.Security')
-rw-r--r--mcs/class/Mono.Security/Test/tools/poll/poll.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/mcs/class/Mono.Security/Test/tools/poll/poll.cs b/mcs/class/Mono.Security/Test/tools/poll/poll.cs
index 9ed4f39a646..e35d6f37c98 100644
--- a/mcs/class/Mono.Security/Test/tools/poll/poll.cs
+++ b/mcs/class/Mono.Security/Test/tools/poll/poll.cs
@@ -45,10 +45,8 @@ class Poller : ICertificatePolicy {
}
} else {
// default sites to poll
- _polledObjects.Add (new PolledObject ("https://www.google.com/"));
- _polledObjects.Add (new PolledObject ("https://www.yahoo.com/"));
- _polledObjects.Add (new PolledObject ("https://www.verisign.com/"));
- _polledObjects.Add (new PolledObject ("https://www.thawte.com/"));
+ _polledObjects.Add (new PolledObject ("https://www.example.org/"));
+ _polledObjects.Add (new PolledObject ("https://www.example.com/"));
}
}