From f0a22d3b77fec728974c9383d4d847b24d1067a4 Mon Sep 17 00:00:00 2001 From: treagitlab <trea@gitlab.com> Date: Mon, 29 Jan 2024 13:36:04 -0800 Subject: [PATCH] Remove FF that no longer exists from spec --- .../unlocking_job_artifacts_across_pipelines_spec.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/qa/qa/specs/features/browser_ui/4_verify/ci_job_artifacts/unlocking_job_artifacts_across_pipelines_spec.rb b/qa/qa/specs/features/browser_ui/4_verify/ci_job_artifacts/unlocking_job_artifacts_across_pipelines_spec.rb index 642e941adc8de..2944dda51460f 100644 --- a/qa/qa/specs/features/browser_ui/4_verify/ci_job_artifacts/unlocking_job_artifacts_across_pipelines_spec.rb +++ b/qa/qa/specs/features/browser_ui/4_verify/ci_job_artifacts/unlocking_job_artifacts_across_pipelines_spec.rb @@ -2,8 +2,7 @@ module QA RSpec.describe 'Verify', :runner, product_group: :pipeline_security do - describe "Unlocking job artifacts across pipelines", feature_flag: { name: 'ci_unlock_non_successful_pipelines, - scope: :project' } do + describe "Unlocking job artifacts across pipelines" do let(:executor) { "qa-runner-#{Faker::Alphanumeric.alphanumeric(number: 8)}" } let(:project) { create(:project, name: 'unlock-job-artifacts-project') } @@ -16,13 +15,11 @@ module QA end before do - Runtime::Feature.enable(:ci_unlock_non_successful_pipelines, project: project) Flow::Login.sign_in project.visit! end after do - Runtime::Feature.disable(:ci_unlock_non_successful_pipelines, project: project) runner.remove_via_api! end -- GitLab