summaryrefslogtreecommitdiffstats
path: root/tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py')
-rw-r--r--tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py b/tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py
index 06f1f42c0..8b5809cbd 100644
--- a/tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py
+++ b/tests/functional/arbiter/test_self_heal_50k_files_heal_command_by_add_brick.py
@@ -211,9 +211,10 @@ class TestSelfHeal(GlusterBaseClass):
# Checking arequals before bringing bricks online
# and after bringing bricks online
- self.assertItemsEqual(result_before_online, result_after_online,
- 'Checksums before and '
- 'after bringing bricks online are not equal')
+ self.assertEqual(sorted(result_before_online),
+ sorted(result_after_online),
+ 'Checksums before and '
+ 'after bringing bricks online are not equal')
g.log.info('Checksums before and after bringing bricks online '
'are equal')
@@ -242,8 +243,9 @@ class TestSelfHeal(GlusterBaseClass):
# Checking arequals after bringing bricks online
# and after adding bricks
- self.assertItemsEqual(result_after_online, result_after_adding_bricks,
- 'Checksums after bringing bricks online and '
- 'after adding bricks are not equal')
+ self.assertEqual(sorted(result_after_online),
+ sorted(result_after_adding_bricks),
+ 'Checksums after bringing bricks online'
+ 'and after adding bricks are not equal')
g.log.info('Checksums after bringing bricks online and '
'after adding bricks are equal')