summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2016-02-26 07:38:59 -0800
committerJay Mundrawala <jdmundrawala@gmail.com>2016-02-26 07:38:59 -0800
commit2831c6206ce22e1b7bd0f736b124248f6e774166 (patch)
treea24f083520183e2b0e403465966dd2ce4e07db9f
parent4ec761fd674aabe7d766a3017c03a328d1164777 (diff)
downloadchef-2831c6206ce22e1b7bd0f736b124248f6e774166.tar.gz
Fix rubocop issues
-rw-r--r--acceptance/fips/test/integration/fips/serverspec/fips_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb b/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb
index 4bc158f16b..66380a37f4 100644
--- a/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb
+++ b/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb
@@ -29,10 +29,10 @@ describe "Chef Fips Specs" do
it "passes the unit and functional specs" do
Bundler.with_clean_env do
ruby_cmd = Mixlib::ShellOut.new(
- "bundle exec rspec -t ~requires_git spec/unit spec/functional", :env => { "PATH" => [ENV['PATH'], path].join(File::PATH_SEPARATOR),
+ "bundle exec rspec -t ~requires_git spec/unit spec/functional", :env => { "PATH" => [ENV["PATH"], path].join(File::PATH_SEPARATOR),
"GEM_PATH" => nil, "GEM_CACHE" => nil, "GEM_HOME" => nil,
- "CHEF_FIPS" => "1"},
- :live_stream => STDOUT, :cwd => chef_dir, :timeout => 3600)
+ "CHEF_FIPS" => "1" },
+ :live_stream => STDOUT, :cwd => chef_dir, :timeout => 3600)
expect { ruby_cmd.run_command.error! }.not_to raise_exception
end
end