From ffd29f8b72f22f6728862128cfdface206905e83 Mon Sep 17 00:00:00 2001 From: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:29:36 +0100 Subject: [PATCH] Update test.py --- tests/integration/test_broken_projections/test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_broken_projections/test.py b/tests/integration/test_broken_projections/test.py index adb7b58f171..ccc64de4133 100644 --- a/tests/integration/test_broken_projections/test.py +++ b/tests/integration/test_broken_projections/test.py @@ -736,7 +736,10 @@ def test_mutation_with_broken_projection(cluster): "all_2_2_0_5" in broken or "" == broken ) # second could be because of a merge. - check(node, table_name, 0) + if "" == broken: + check(node, table_name, 1) + else: + check(node, table_name, 0) node.query( f"ALTER TABLE {table_name} DELETE WHERE c == 13 SETTINGS mutations_sync = 1"