diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-06-24 13:11:27 -0700 |
---|---|---|
committer | Pete Higgins <pete@peterhiggins.org> | 2020-06-24 17:47:50 -0700 |
commit | b7365397f410767234619d94129757c48b8d9456 (patch) | |
tree | 8225d25eac794fbdc113821ebf33916920b27ffa /spec/unit/chef_fs | |
parent | c7933fc1112a92ff2ebee80fbea0661766ec933b (diff) | |
download | chef-b7365397f410767234619d94129757c48b8d9456.tar.gz |
Fix some odd whitespacing in tests.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'spec/unit/chef_fs')
-rw-r--r-- | spec/unit/chef_fs/config_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/chef_fs/config_spec.rb b/spec/unit/chef_fs/config_spec.rb index 4f112070d8..848e789d3c 100644 --- a/spec/unit/chef_fs/config_spec.rb +++ b/spec/unit/chef_fs/config_spec.rb @@ -203,8 +203,8 @@ describe Chef::ChefFS::Config do }) end - let (:path) { "/roles/foo.json" } - let (:entry) { Entry.new(path) } + let(:path) { "/roles/foo.json" } + let(:entry) { Entry.new(path) } it "returns the entry's path if the cwd isn't in the config" do cfg = Chef::ChefFS::Config.new(config, "/my_repo/cookbooks") |