1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 17:45:35 +00:00

Fix default port for HTTPS.

This commit is contained in:
Abhinav Gupta
2015-02-23 23:37:04 -08:00
parent 32831d4151
commit 2473bdb77a
4 changed files with 5 additions and 5 deletions

View File

@@ -21,8 +21,8 @@ def test_headers():
('http://go.com/', 80),
('http://go.com:80/', 80),
('http://go.com:3000/', 3000),
('https://go.com/', 433),
('https://go.com:433/', 433),
('https://go.com/', 443),
('https://go.com:443/', 443),
('https://go.com:3000/', 3000),
])
def test_port(uri, expected_port):