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>2022-12-05 22:40:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-05 22:40:33 +0300
commitd7c5be92af9c10cf20e78363c188c1a707a6bb90 (patch)
treedf2d354bc4277c7a0324fb8240bd4e24d58007f2 /spec/lib/gitlab/fips_spec.rb
parentb28d1361dd1ec63053dbfae475097928c6d01116 (diff)
Add latest changes from gitlab-org/gitlab@15-6-stable-ee
Diffstat (limited to 'spec/lib/gitlab/fips_spec.rb')
-rw-r--r--spec/lib/gitlab/fips_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/fips_spec.rb b/spec/lib/gitlab/fips_spec.rb
index 4d19a44f617..50ab2889ccf 100644
--- a/spec/lib/gitlab/fips_spec.rb
+++ b/spec/lib/gitlab/fips_spec.rb
@@ -10,7 +10,7 @@ RSpec.describe Gitlab::FIPS do
let(:fips_mode_env_var) { nil }
before do
- expect(OpenSSL).to receive(:fips_mode).and_return(openssl_fips_mode)
+ allow(OpenSSL).to receive(:fips_mode).and_return(openssl_fips_mode)
stub_env("FIPS_MODE", fips_mode_env_var)
end