summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2014-09-02 15:20:56 -0700
committerdanielsdeleo <dan@getchef.com>2014-09-03 12:44:46 -0700
commitae7d23c48b9d93b0e10789eb3f0e307a18351d99 (patch)
treec0a9f5208a641069640473e1c9879573ecc56180 /spec
parentb4145b8ea22c91d22fc66fd585e36e1a415ede38 (diff)
downloadchef-ae7d23c48b9d93b0e10789eb3f0e307a18351d99.tar.gz
Remove config file jail, replaced with config skip option
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/config_fetcher_spec.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/unit/config_fetcher_spec.rb b/spec/unit/config_fetcher_spec.rb
index c29521806a..f6d5436a11 100644
--- a/spec/unit/config_fetcher_spec.rb
+++ b/spec/unit/config_fetcher_spec.rb
@@ -8,9 +8,7 @@ describe Chef::ConfigFetcher do
let(:config_location_regex) { Regexp.escape(config_location) }
let(:invalid_json_error_regex) { %r[Could not parse the provided JSON file \(#{config_location_regex}\)] }
- let(:config_jail_path) { nil }
-
- let(:fetcher) { Chef::ConfigFetcher.new(config_location, config_jail_path) }
+ let(:fetcher) { Chef::ConfigFetcher.new(config_location) }
context "when loading a local file" do
let(:config_location) { "/etc/chef/client.rb" }