From ee9a7fdbe5355208c16953a0b11365f284db904b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Thu, 24 Jul 2025 10:06:28 +0200 Subject: [PATCH] Unquarantine 3 old flaky tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- ee/spec/models/ee/project_spec.rb | 2 +- spec/features/groups/participants_autocomplete_spec.rb | 2 +- spec/requests/api/projects_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/spec/models/ee/project_spec.rb b/ee/spec/models/ee/project_spec.rb index 8a6573d1f77eb9..22b51d44731c95 100644 --- a/ee/spec/models/ee/project_spec.rb +++ b/ee/spec/models/ee/project_spec.rb @@ -1121,7 +1121,7 @@ create(:import_state, :mirror, :finished, project: another_project) end - it 'returns project if next_execution_timestamp is not in the future', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444921' do + it 'returns project if next_execution_timestamp is not in the future' do expect(described_class.mirrors_to_sync(timestamp, limit: 1)).to match_array(project) end end diff --git a/spec/features/groups/participants_autocomplete_spec.rb b/spec/features/groups/participants_autocomplete_spec.rb index 90ae5540a1f257..a94f95c3cedc1d 100644 --- a/spec/features/groups/participants_autocomplete_spec.rb +++ b/spec/features/groups/participants_autocomplete_spec.rb @@ -37,7 +37,7 @@ create(:group_group_link, shared_group: group, shared_with_group: private_group) end - it 'suggests member of private group as well', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444683' do + it 'suggests member of private group as well' do visit edit_group_milestone_path(group, noteable) fill_in 'Description', with: '@' diff --git a/spec/requests/api/projects_spec.rb b/spec/requests/api/projects_spec.rb index 0f8b76c7e5d8ed..ed9b2f319e5c5b 100644 --- a/spec/requests/api/projects_spec.rb +++ b/spec/requests/api/projects_spec.rb @@ -2102,7 +2102,7 @@ def request end context 'user does not have access to view the private profile' do - it 'returns no projects', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444704' do + it 'returns no projects' do get api(path, user) expect(response).to have_gitlab_http_status(:ok) -- GitLab