Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/reports/test_suite.rb')
-rw-r--r--lib/gitlab/ci/reports/test_suite.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/ci/reports/test_suite.rb b/lib/gitlab/ci/reports/test_suite.rb
index d0388c65f58..dcc593b4403 100644
--- a/lib/gitlab/ci/reports/test_suite.rb
+++ b/lib/gitlab/ci/reports/test_suite.rb
@@ -96,8 +96,8 @@ module Gitlab
end
def sort_by_execution_time_desc
- @test_cases = @test_cases.keys.each_with_object({}) do |key, hash|
- hash[key] = @test_cases[key].sort_by { |_key, test_case| -test_case.execution_time }.to_h
+ @test_cases = @test_cases.keys.index_with do |key|
+ @test_cases[key].sort_by { |_key, test_case| -test_case.execution_time }.to_h
end
end
end