Skip to content

Commit ae60fa7

Browse files
authored
Use www.python.org for testing _ssl (#1464)
1 parent 1bcdf8b commit ae60fa7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Tests/modules/network_related/test__ssl.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
from iptest import IronPythonTestCase, is_cli, is_netcoreapp, retryOnFailure, run_test, skipUnlessIronPython
1616

17-
SSL_URL = "www.microsoft.com"
18-
SSL_ISSUER = "CN=Microsoft RSA TLS CA 01, O=Microsoft Corporation, C=US"
19-
SSL_SERVER = "www.microsoft.com"
17+
SSL_URL = "www.python.org"
18+
SSL_ISSUER = "CN=GlobalSign Atlas R3 DV TLS CA H2 2021, O=GlobalSign nv-sa, C=BE"
19+
SSL_SERVER = "www.python.org"
2020
SSL_PORT = 443
21-
SSL_REQUEST = b"GET /en-us HTTP/1.0\r\nHost: www.microsoft.com\r\n\r\n"
22-
SSL_RESPONSE = b"Microsoft"
21+
SSL_REQUEST = b"GET /en-us HTTP/1.0\r\nHost: www.python.org\r\n\r\n"
22+
SSL_RESPONSE = b"Python Programming Language"
2323

2424
CERTFILE = os.path.join(os.path.dirname(__file__), "keycert.pem")
2525

0 commit comments

Comments
 (0)