diff options
author | S.Cavallo <smcavallo@hotmail.com> | 2018-05-09 13:56:15 -0400 |
---|---|---|
committer | S.Cavallo <smcavallo@hotmail.com> | 2018-05-09 13:56:15 -0400 |
commit | c94f90370bf38020d7773f0226090a40f5fae75b (patch) | |
tree | cfbacc9b28db173e53380c35ce84f4e60dc39676 | |
parent | 3d8ed4ea8ca808e42c689225ef1780ef01d028a4 (diff) | |
download | chef-c94f90370bf38020d7773f0226090a40f5fae75b.tar.gz |
Signed-off-by: S.Cavallo <smcavallo@hotmail.com>
rubocop style fixes
-rw-r--r-- | chef-config/spec/unit/workstation_config_loader_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chef-config/spec/unit/workstation_config_loader_spec.rb b/chef-config/spec/unit/workstation_config_loader_spec.rb index 677d411e3b..9d294061c3 100644 --- a/chef-config/spec/unit/workstation_config_loader_spec.rb +++ b/chef-config/spec/unit/workstation_config_loader_spec.rb @@ -404,8 +404,8 @@ EOH expect { config_loader.load_credentials }.not_to raise_error expect(ChefConfig::Config.chef_server_url).to eq("https://api.chef.io/organizations/bedrock") expect(ChefConfig::Config.client_key.to_s).to eq("#{home}/.chef/barney_rubble.pem") - expect(ChefConfig::Config.knife[:ssh_user].to_s).to eq('knife_ssh_user') - expect(ChefConfig::Config.knife[:secret_file].to_s).to eq('/home/barney/.chef/encrypted_data_bag_secret.pem') + expect(ChefConfig::Config.knife[:ssh_user].to_s).to eq("knife_ssh_user") + expect(ChefConfig::Config.knife[:secret_file].to_s).to eq("/home/barney/.chef/encrypted_data_bag_secret.pem") expect(ChefConfig::Config.profile.to_s).to eq("default") end end |