diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-13 13:29:11 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-13 13:29:11 -0700 |
commit | a9f7c8931ee8dd48fbece2af43d07ae50f89f5ba (patch) | |
tree | 450afae90098cb387d63dd183606ab5de013ac54 | |
parent | f6b4fb5467f5213a53fc5908223091b61210d701 (diff) | |
download | chef-a9f7c8931ee8dd48fbece2af43d07ae50f89f5ba.tar.gz |
Fix the default action in the cron_access spec
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | spec/unit/resource/cron_access_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/resource/cron_access_spec.rb b/spec/unit/resource/cron_access_spec.rb index 1fd16f315f..9ba1d5b989 100644 --- a/spec/unit/resource/cron_access_spec.rb +++ b/spec/unit/resource/cron_access_spec.rb @@ -21,7 +21,7 @@ describe Chef::Resource::CronAccess do let(:resource) { Chef::Resource::CronAccess.new("bob") } it "has a default action of [:deny]" do - expect(resource.action).to eql([:deny]) + expect(resource.action).to eql([:allow]) end it "accepts create or delete for action" do |