mirror of
https://github.com/nginx-proxy/nginx-proxy
synced 2025-02-05 05:41:39 +01:00
b5dea1cf50
- remove unused imports in test cases - fix code smells and code style in conftest.py
5 lines
223 B
Python
5 lines
223 B
Python
def test_answer_is_served_from_exposed_port_even_if_not_80(docker_compose, nginxproxy):
|
|
r = nginxproxy.get("http://web.nginx-proxy.tld/port")
|
|
assert r.status_code == 200
|
|
assert "answer from port 81\n" in r.text
|