summaryrefslogtreecommitdiffstats
path: root/tests/functional/heketi/test_create_distributed_replica_heketi_volume.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/heketi/test_create_distributed_replica_heketi_volume.py')
-rw-r--r--tests/functional/heketi/test_create_distributed_replica_heketi_volume.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/heketi/test_create_distributed_replica_heketi_volume.py b/tests/functional/heketi/test_create_distributed_replica_heketi_volume.py
index f5c41d8d..2856d0e3 100644
--- a/tests/functional/heketi/test_create_distributed_replica_heketi_volume.py
+++ b/tests/functional/heketi/test_create_distributed_replica_heketi_volume.py
@@ -53,8 +53,8 @@ class TestHeketiVolume(BaseClass):
for node_id in node_ids:
node_info = heketi_node_info(
self.heketi_client_node, heketi_url, node_id, json=True)
- if (node_info['state'].lower() != 'online' or
- not node_info['devices']):
+ if (node_info['state'].lower() != 'online'
+ or not node_info['devices']):
continue
if len(nodes) > 2:
out = heketi_node_disable(
@@ -80,8 +80,8 @@ class TestHeketiVolume(BaseClass):
nodes[node_id].append(device['storage']['free'])
# Skip test if nodes requirements are not met
- if (len(nodes) < 3 or
- not all(map((lambda _list: len(_list) > 1), nodes.values()))):
+ if (len(nodes) < 3
+ or not all(map((lambda _l: len(_l) > 1), nodes.values()))):
raise self.skipTest(
"Could not find 3 online nodes with, "
"at least, 2 online devices having free space "