From cc064da1f1a904b72a8d5f6beb3548fe7c12fa72 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 29 May 2021 15:59:30 +0200 Subject: [PATCH] fix: use the right bind port in molecule tests --- molecule/centos7/tests/test_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/centos7/tests/test_default.py b/molecule/centos7/tests/test_default.py index c08b312..d92b2f8 100644 --- a/molecule/centos7/tests/test_default.py +++ b/molecule/centos7/tests/test_default.py @@ -17,4 +17,4 @@ def test_prometheus_running_and_enabled(host): def test_prometheus_socket(host): # Verify the socket is listening for HTTP traffic - assert host.socket("tcp://127.0.0.1:61000").is_listening + assert host.socket("tcp://127.0.0.1:9090").is_listening