From a412e129bbb2a10ba03c690b008abfcca19e7732 Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Thu, 29 Oct 2020 17:38:26 +0000 Subject: [PATCH] Unquarantine a spec https://gitlab.com/gitlab-org/gitlab/-/issues/26952 is closed now, so we should be able to unquarantine this. --- .../browser_ui/1_manage/project/import_github_repo_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/qa/specs/features/browser_ui/1_manage/project/import_github_repo_spec.rb b/qa/qa/specs/features/browser_ui/1_manage/project/import_github_repo_spec.rb index 83dfb2d963975f..5c04bff7108461 100644 --- a/qa/qa/specs/features/browser_ui/1_manage/project/import_github_repo_spec.rb +++ b/qa/qa/specs/features/browser_ui/1_manage/project/import_github_repo_spec.rb @@ -1,12 +1,12 @@ # frozen_string_literal: true module QA - RSpec.describe 'Manage', :github, quarantine: { issue: 'https://gitlab.com/gitlab-org/gitlab/issues/26952', type: :bug } do + RSpec.describe 'Manage', :github do describe 'Project import from GitHub' do let(:imported_project) do Resource::ProjectImportedFromGithub.fabricate! do |project| project.name = 'imported-project' - project.personal_access_token = Runtime::Env.github_access_token + project.github_personal_access_token = Runtime::Env.github_access_token project.github_repository_path = 'gitlab-qa/test-project' end end -- GitLab