|
@@ -11,4 +11,4 @@ def test_https_is_disabled(docker_compose, nginxproxy):
|
|
with pytest.raises(ConnectionError) as excinfo:
|
|
with pytest.raises(ConnectionError) as excinfo:
|
|
r = nginxproxy.get("https://web.nginx-proxy.tld/", allow_redirects=False)
|
|
r = nginxproxy.get("https://web.nginx-proxy.tld/", allow_redirects=False)
|
|
|
|
|
|
- assert "[Errno 93] Protocol not supported" in excinfo.value
|
|
|
|
|
|
+ assert "[Errno 93] Protocol not supported" in str(excinfo.value)
|