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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-08 00:12:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-08 00:12:55 +0300
commit2cf4bdd0b060175c7058b395014b101fbe6214a3 (patch)
treef3aaeca09cc434632c8eb2c2998877c3f9a2e0d9 /spec/tooling
parent1bdc6c89c32a7380a81598629b9ad05ba9a2a94f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/tooling')
-rw-r--r--spec/tooling/lib/tooling/parallel_rspec_runner_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/tooling/lib/tooling/parallel_rspec_runner_spec.rb b/spec/tooling/lib/tooling/parallel_rspec_runner_spec.rb
index 27869974b39..ed9fdc3825b 100644
--- a/spec/tooling/lib/tooling/parallel_rspec_runner_spec.rb
+++ b/spec/tooling/lib/tooling/parallel_rspec_runner_spec.rb
@@ -55,7 +55,7 @@ RSpec.describe Tooling::ParallelRSpecRunner, feature_category: :tooling do # rub
context 'given filter tests file' do
let(:filter_tests_file) do
- Tempfile.create.tap do |f| # rubocop:disable Rails/SaveBang -- Tempfile has no create! method
+ Tempfile.create.tap do |f|
f.write(filter_tests.join(' '))
f.rewind
end