summaryrefslogtreecommitdiffstats
path: root/tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py
diff options
context:
space:
mode:
authorPranav <prprakas@redhat.com>2020-05-26 13:48:44 +0530
committerBala Konda Reddy M <bala12352@gmail.com>2020-05-27 04:38:47 +0000
commit8516fc05bac6b9c00ce9d4c605049509c837b466 (patch)
tree31cfb81ddd08f96e5bfc16189ec9061b94cb8c91 /tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py
parent14018d9433d254912a280222db6fc3306a28a30e (diff)
[TestFix] Fix assertItemsEqual issue with python3
Issue: In python3 assertItemsEqual is no longer supported and is replaced with assertCountEqual (Refer [1]). Because of this issue, few arbiter tests are failing. [1] https://docs.python.org/2/library/unittest.html#unittest.TestCase.assertItemsEqual Fix: The replacement assertCountEqual is not supported in python2. So the fix is to replace assertItemsEqual with assertEqual(sorted(expected), sorted(actual)) Change-Id: Ic1d599fa31f85a8a41598b6c245056a6ff01e000 Signed-off-by: Pranav <prprakas@redhat.com>
Diffstat (limited to 'tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py')
-rwxr-xr-xtests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py b/tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py
index 132b9df8a..c12c1d607 100755
--- a/tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py
+++ b/tests/functional/arbiter/test_data_self_heal_algorithm_diff_heal_command.py
@@ -272,6 +272,7 @@ class TestSelfHeal(GlusterBaseClass):
# Checking arequals before bringing bricks offline
# and after bringing bricks online
- self.assertItemsEqual(result_before_online, result_after_online,
- 'Checksums are not equal')
+ self.assertEqual(sorted(result_before_online),
+ sorted(result_after_online),
+ 'Checksums are not equal')
g.log.info('Checksums are equal')