summaryrefslogtreecommitdiffstats
path: root/tests/functional/gluster_stability/test_gluster_block_stability.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/gluster_stability/test_gluster_block_stability.py')
-rw-r--r--tests/functional/gluster_stability/test_gluster_block_stability.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/gluster_stability/test_gluster_block_stability.py b/tests/functional/gluster_stability/test_gluster_block_stability.py
index 8f31fd24..15393bf4 100644
--- a/tests/functional/gluster_stability/test_gluster_block_stability.py
+++ b/tests/functional/gluster_stability/test_gluster_block_stability.py
@@ -672,12 +672,12 @@ class TestGlusterBlockStability(GlusterBlockBaseClass):
target_portal_list = sorted(set(target_portal_list))
unmatched_gips = (set(host_ips) ^ set(gluster_ips_bv_flattend))
unmatched_tpips = (set(host_ips) ^ set(target_portal_list))
- self.assertEqual(
- cmp(host_ips, gluster_ips_bv_flattend), 0,
+ self.assertFalse(
+ unmatched_gips,
"Could not match glusterips in blockvolumes, difference is %s "
% unmatched_gips)
- self.assertEqual(
- cmp(host_ips, target_portal_list), 0,
+ self.assertFalse(
+ unmatched_tpips,
"Could not match glusterips in pv describe, difference is %s "
% unmatched_tpips)