summaryrefslogtreecommitdiff
path: root/chef-config/spec/unit/fips_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'chef-config/spec/unit/fips_spec.rb')
-rw-r--r--chef-config/spec/unit/fips_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/chef-config/spec/unit/fips_spec.rb b/chef-config/spec/unit/fips_spec.rb
index d53096cead..980ffb0979 100644
--- a/chef-config/spec/unit/fips_spec.rb
+++ b/chef-config/spec/unit/fips_spec.rb
@@ -104,7 +104,7 @@ RSpec.describe "ChefConfig.fips?" do
context "on 32 bit ruby" do
let(:arch) { Win32::Registry::KEY_READ | 0x100 }
- before { stub_const("::RbConfig::CONFIG", { "target_cpu" => "i386" } ) }
+ before do stub_const("::RbConfig::CONFIG", { "target_cpu" => "i386" } ) end
it_behaves_like "fips_detection"
end
@@ -112,7 +112,7 @@ RSpec.describe "ChefConfig.fips?" do
context "on 64 bit ruby" do
let(:arch) { Win32::Registry::KEY_READ | 0x200 }
- before { stub_const("::RbConfig::CONFIG", { "target_cpu" => "x86_64" } ) }
+ before do stub_const("::RbConfig::CONFIG", { "target_cpu" => "x86_64" } ) end
it_behaves_like "fips_detection"
end
@@ -120,7 +120,7 @@ RSpec.describe "ChefConfig.fips?" do
context "on unknown ruby" do
let(:arch) { Win32::Registry::KEY_READ }
- before { stub_const("::RbConfig::CONFIG", { "target_cpu" => nil } ) }
+ before do stub_const("::RbConfig::CONFIG", { "target_cpu" => nil } ) end
it_behaves_like "fips_detection"
end