From 9cd47116790feaac4c3fe004bd53518a76f17832 Mon Sep 17 00:00:00 2001 From: Georgy Moshkin <gmoshkin@picodata.io> Date: Mon, 2 Sep 2024 17:39:49 +0300 Subject: [PATCH] test: expel tests were broken --- test/int/test_expelling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/int/test_expelling.py b/test/int/test_expelling.py index 74a3d3ea6c..b246909cbe 100644 --- a/test/int/test_expelling.py +++ b/test/int/test_expelling.py @@ -17,7 +17,7 @@ def assert_instance_expelled(expelled_instance: Instance, instance: Instance): def assert_voters(voters: list[Instance], instance: Instance): expected_voters = list(map(lambda i: i.raft_id, voters)) actual_voters = instance.eval("return box.space._raft_state:get('voters').value") - assert actual_voters.sort() == expected_voters.sort() + assert sorted(actual_voters) == sorted(expected_voters) def assert_pid_down(pid): -- GitLab