summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-08-01 22:47:32 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-08-02 16:38:48 +1000
commit21d1d257a804e472607989ef63fb7d7ce1ddee77 (patch)
tree2a8fdcc101982a6a76c707fcdd80fde9c19811ae /test
parent849fa67b6ebc69df9a5b8c95eb68281ccf45d376 (diff)
downloadpuppet-21d1d257a804e472607989ef63fb7d7ce1ddee77.tar.gz
puppet-21d1d257a804e472607989ef63fb7d7ce1ddee77.tar.xz
puppet-21d1d257a804e472607989ef63fb7d7ce1ddee77.zip
Fixing cron test to match new behaviour
7 was added as a valid weekday in #2293, and this test just corrects that. Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'test')
-rwxr-xr-xtest/ral/type/cron.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ral/type/cron.rb b/test/ral/type/cron.rb
index 89c5583e0..2b29f0c0d 100755
--- a/test/ral/type/cron.rb
+++ b/test/ral/type/cron.rb
@@ -171,7 +171,7 @@ class TestCron < Test::Unit::TestCase
:weekday => {
:valid => [ 0, 3, 6, "1", "tue", "wed",
"Wed", "MOnday", "SaTurday" ],
- :invalid => [ -1, 7, "13", "tues", "teusday", "thurs" ]
+ :invalid => [ -1, 8, "13", "tues", "teusday", "thurs" ]
},
:hour => {
:valid => [ 0, 21, 23 ],