summaryrefslogtreecommitdiff
path: root/qa/spec/support/stub_env.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/support/stub_env.rb')
-rw-r--r--qa/spec/support/stub_env.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/qa/spec/support/stub_env.rb b/qa/spec/support/stub_env.rb
index bc8f3a5e22e..044804cd599 100644
--- a/qa/spec/support/stub_env.rb
+++ b/qa/spec/support/stub_env.rb
@@ -32,6 +32,8 @@ module Support
allow(ENV).to receive(:[]).and_call_original
allow(ENV).to receive(:key?).and_call_original
allow(ENV).to receive(:fetch).and_call_original
+ # Prevent secrets from leaking in CI
+ allow(ENV).to receive(:inspect).and_return([])
add_stubbed_value(STUBBED_KEY, true)
end
end