summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-11-15 14:54:22 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-12-06 13:08:25 -0800
commitebbd30f036c7e6938ea2e5d3624543ffe0b5cb41 (patch)
tree1e553ea624b67647dda1a9d211dec2dbc3d30d7c
parent3ee4a7d966235eb7e941dad31e8aa2001154d816 (diff)
downloadchef-ebbd30f036c7e6938ea2e5d3624543ffe0b5cb41.tar.gz
fix Style/SpaceInsideArrayPercentLiteral
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--spec/integration/knife/chef_repo_path_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/knife/chef_repo_path_spec.rb b/spec/integration/knife/chef_repo_path_spec.rb
index 1388aa8716..e609fa60b3 100644
--- a/spec/integration/knife/chef_repo_path_spec.rb
+++ b/spec/integration/knife/chef_repo_path_spec.rb
@@ -843,7 +843,7 @@ EOM
context "when data_bag_path and chef_repo_path are set, and nothing else" do
before :each do
- %w{client cookbook environment node role user}.each do |object_name|
+ %w{client cookbook environment node role user}.each do |object_name|
Chef::Config.delete("#{object_name}_path".to_sym)
end
Chef::Config.data_bag_path = File.join(Chef::Config.chef_repo_path, "data_bags")
@@ -903,7 +903,7 @@ EOM
include_context "default config options"
before :each do
- %w{client cookbook environment node role user}.each do |object_name|
+ %w{client cookbook environment node role user}.each do |object_name|
Chef::Config.delete("#{object_name}_path".to_sym)
end
Chef::Config.delete(:chef_repo_path)