From d14f193d09d59d5a786aabc0d995b02eb61ca68f Mon Sep 17 00:00:00 2001
From: Mario Celi <mcelicalderon@gitlab.com>
Date: Thu, 25 Jul 2024 16:13:52 +0000
Subject: [PATCH] Increase query limit for work item feature spec

---
 .../features/work_items/rolledup_dates_shared_examples.rb       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/support/shared_examples/features/work_items/rolledup_dates_shared_examples.rb b/spec/support/shared_examples/features/work_items/rolledup_dates_shared_examples.rb
index 2a167431e8a1f..ef47e74ce7ec5 100644
--- a/spec/support/shared_examples/features/work_items/rolledup_dates_shared_examples.rb
+++ b/spec/support/shared_examples/features/work_items/rolledup_dates_shared_examples.rb
@@ -189,7 +189,7 @@ def add_existing_child(child_work_item)
       context 'when removing all children' do
         it 'rolled up child dates' do
           # https://gitlab.com/gitlab-org/gitlab/-/issues/473408
-          allow(Gitlab::QueryLimiting::Transaction).to receive(:threshold).and_return(107)
+          allow(Gitlab::QueryLimiting::Transaction).to receive(:threshold).and_return(108)
 
           add_new_child(title: 'child issue 1', start_date: '2020-11-01', due_date: '2020-12-02')
           add_new_child(title: 'child issue 2', start_date: '2020-12-01', due_date: '2021-01-02')
-- 
GitLab