diff options
| author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-05-13 03:06:53 +0000 |
|---|---|---|
| committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-05-13 03:06:53 +0000 |
| commit | c0b9c14ebd1524a1e2334e656f997ec680a18966 (patch) | |
| tree | 4437aea2c4239279131a56adca1679f636683d29 /spec/support/shared_examples/views | |
| parent | 98638cd5e43611aac2193a5c2f80f72374040430 (diff) | |
| download | gitlab-ce-c0b9c14ebd1524a1e2334e656f997ec680a18966.tar.gz | |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/shared_examples/views')
| -rw-r--r-- | spec/support/shared_examples/views/pipeline_status_changes_email.rb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/spec/support/shared_examples/views/pipeline_status_changes_email.rb b/spec/support/shared_examples/views/pipeline_status_changes_email.rb index 698f11c2216..fe6cc5e03d2 100644 --- a/spec/support/shared_examples/views/pipeline_status_changes_email.rb +++ b/spec/support/shared_examples/views/pipeline_status_changes_email.rb @@ -8,12 +8,14 @@ RSpec.shared_examples 'pipeline status changes email' do let(:merge_request) { create(:merge_request, :simple, source_project: project) } let(:pipeline) do - create(:ci_pipeline, - project: project, - user: user, - ref: project.default_branch, - sha: project.commit.sha, - status: status) + create( + :ci_pipeline, + project: project, + user: user, + ref: project.default_branch, + sha: project.commit.sha, + status: status + ) end before do |
