From cd4dad60478c679ec2071fa132158e09faa9e422 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 10 Jun 2019 18:38:30 +0200 Subject: [PATCH] fix bindport in molecule test --- molecule/ec2-centos-7/tests/test_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index f6cf5e0..06a3714 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -22,4 +22,4 @@ def test_mosquitto_running_and_enabled(host): def test_mosquitto_socket(host): # Verify the socket is listening for HTTP traffic - assert host.socket("tcp://127.0.0.1:8883").is_listening + assert host.socket("tcp://127.0.0.1:1883").is_listening