From 82822ec337ec0cd83c01b9f106d63873e617735d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 10 Jun 2019 18:04:09 +0200 Subject: [PATCH] fix python syntax error --- 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 f68c95d..cdf887f 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -25,4 +25,4 @@ def test_mosquitto_socket(host): inventory = yaml.load(open(host.backend.ansible_inventory)) address = inventory['all']['hosts']['bind_host']['ansible_host'] assert host.socket( - "tcp://{address}:8883".format(address=address).is_listening + "tcp://{address}:8883".format(address=address)).is_listening