From f7f686f540bb8d2e52b4efccbf3f9fbd5c965abd Mon Sep 17 00:00:00 2001 From: GeorgianaElena Date: Tue, 12 Feb 2019 14:55:01 +0200 Subject: [PATCH] Fixed unit test --- tests/test_traefik.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_traefik.py b/tests/test_traefik.py index 3480c0e..bcb0248 100644 --- a/tests/test_traefik.py +++ b/tests/test_traefik.py @@ -35,7 +35,7 @@ def test_default_config(tmpdir, tljh_dir): assert cfg["entryPoints"] == { "http": {"address": ":80"}, "auth_api": { - "address": ":8099", + "address": "127.0.0.1:8099", "auth": { "basic": {"users": [""]} }, @@ -72,7 +72,7 @@ def test_letsencrypt_config(tljh_dir): "http": {"address": ":80", "redirect": {"entryPoint": "https"}}, "https": {"address": ":443", "tls": {}}, "auth_api": { - "address": ":8099", + "address": "127.0.0.1:8099", "auth": { "basic": {"users": [""]} }, @@ -118,7 +118,7 @@ def test_manual_ssl_config(tljh_dir): }, }, "auth_api": { - "address": ":8099", + "address": "127.0.0.1:8099", "auth": { "basic": {"users": [""]} },