tests: fix identation issue in test_rgw.py

The error was introduced by the commit
1ac94c048f.

Fixes: https://github.com/ceph/ceph-ansible/issues/3528
Signed-off-by: Rishabh Dave <ridave@redhat.com>
pull/3515/head
Rishabh Dave 2019-01-23 16:19:31 +05:30 committed by Guillaume Abrioux
parent 0bfefdd5bc
commit 557d44451d
1 changed files with 16 additions and 14 deletions

View File

@ -59,4 +59,6 @@ class TestRGWs(object):
ip_addr = host.interface("eth1").addresses[0]
for i in range(int(node["vars"]["radosgw_num_instances"])):
assert host.socket(
"tcp://{ip_addr}:{port}".format(ip_addr=ip_addr, port=(8080+i))).is_listening # noqa E501
"tcp://{ip_addr}:{port}".format(ip_addr=ip_addr,
port=(8080+i))
).is_listening # noqa E501