aboutsummaryrefslogtreecommitdiff
path: root/spec/integration/provider/cron/crontab_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/integration/provider/cron/crontab_spec.rb')
-rw-r--r--spec/integration/provider/cron/crontab_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/integration/provider/cron/crontab_spec.rb b/spec/integration/provider/cron/crontab_spec.rb
index 0148d0c..c9661e4 100644
--- a/spec/integration/provider/cron/crontab_spec.rb
+++ b/spec/integration/provider/cron/crontab_spec.rb
@@ -136,13 +136,13 @@ describe Puppet::Type.type(:cron).provider(:crontab), '(integration)', unless: P
it "works correctly when managing 'target' but not 'user'" do
apply_with_error_check(<<-MANIFEST)
cron {
- 'My daily failure':
- special => 'daily',
+ 'My weekly failure':
+ special => 'weekly',
command => '/bin/false',
target => '#{crontab_user1}',
}
MANIFEST
- expect_output('crontab_user1')
+ expect_output('crontab_user3')
end
it 'does nothing if a matching entry already present' do