summaryrefslogtreecommitdiff
path: root/spec/models/analytics/cycle_analytics
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-06 03:08:18 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-06 03:08:18 +0000
commit53a3791717e8925078f074b976a561c7a72b1b22 (patch)
tree826aea342691595c3d3cdc716019a81e09c05873 /spec/models/analytics/cycle_analytics
parenta807e50ade2a78add0c13b75575203d7d99e8a4c (diff)
downloadgitlab-ce-53a3791717e8925078f074b976a561c7a72b1b22.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/analytics/cycle_analytics')
-rw-r--r--spec/models/analytics/cycle_analytics/project_stage_spec.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/models/analytics/cycle_analytics/project_stage_spec.rb b/spec/models/analytics/cycle_analytics/project_stage_spec.rb
index a67f9fec443..697b7aee022 100644
--- a/spec/models/analytics/cycle_analytics/project_stage_spec.rb
+++ b/spec/models/analytics/cycle_analytics/project_stage_spec.rb
@@ -48,10 +48,11 @@ RSpec.describe Analytics::CycleAnalytics::ProjectStage do
subject(:distinct_start_and_end_event_identifiers) { described_class.distinct_stages_within_hierarchy(top_level_group).to_a.pluck(:start_event_identifier, :end_event_identifier) }
it 'returns distinct stages by start and end events (using stage_event_hash_id)' do
- expect(distinct_start_and_end_event_identifiers).to match_array([
- %w[issue_created issue_deployed_to_production],
- %w[merge_request_created merge_request_merged]
- ])
+ expect(distinct_start_and_end_event_identifiers).to match_array(
+ [
+ %w[issue_created issue_deployed_to_production],
+ %w[merge_request_created merge_request_merged]
+ ])
end
end
end