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>2021-06-16 21:25:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-16 21:25:58 +0300
commita5f4bba440d7f9ea47046a0a561d49adf0a1e6d4 (patch)
treefb69158581673816a8cd895f9d352dcb3c678b1e /spec/rake_helper.rb
parentd16b2e8639e99961de6ddc93909f3bb5c1445ba1 (diff)
Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42
Diffstat (limited to 'spec/rake_helper.rb')
-rw-r--r--spec/rake_helper.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/rake_helper.rb b/spec/rake_helper.rb
index b47240658e3..7df1cf7444f 100644
--- a/spec/rake_helper.rb
+++ b/spec/rake_helper.rb
@@ -6,18 +6,12 @@ require 'rake'
RSpec.configure do |config|
config.include RakeHelpers
- # Redirect stdout so specs don't have so much noise
config.before(:all) do
- $stdout = StringIO.new
-
Rake.application.rake_require 'tasks/gitlab/helpers'
Rake::Task.define_task :environment
end
- # Reset stdout
config.after(:all) do
- $stdout = STDOUT
-
delete_from_all_tables!
end
end