Commit 79dbf3c5 authored by Vitali Tatarintev's avatar Vitali Tatarintev

Merge branch 'rspec-empty-line-after-letitbe-ee-spec-graphql-types' into 'master'

Fix RSpec/EmptyLineAfterFinalLetItBe for ee/spec/graphql/types

See merge request gitlab-org/gitlab!58385
parents df3ffbeb 0c8d25c5
......@@ -397,7 +397,6 @@ RSpec/EmptyLineAfterFinalLetItBe:
- ee/spec/features/markdown/metrics_spec.rb
- ee/spec/features/registrations/group_invites_during_signup_flow_spec.rb
- ee/spec/features/subscriptions_spec.rb
- ee/spec/graphql/types/issue_type_spec.rb
- ee/spec/helpers/ee/graph_helper_spec.rb
- ee/spec/helpers/ee/issues_helper_spec.rb
- ee/spec/helpers/ee/projects/incidents_helper_spec.rb
......
---
title: Fix RSpec/EmptyLineAfterFinalLetItBe rubocop offenses in ee/spec/graphql/types
merge_request: 58385
author: Abdul Wadood @abdulwd
type: fixed
......@@ -18,6 +18,7 @@ RSpec.describe GitlabSchema.types['Issue'] do
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, :public, group: group) }
let_it_be(:project_path) { project.full_path }
let!(:blocking_issue1) { create(:issue, project: project) }
let!(:blocked_issue1) { create(:issue, project: project) }
let!(:issue_link1) { create :issue_link, source: blocking_issue1, target: blocked_issue1, link_type: IssueLink::TYPE_BLOCKS }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment