Skip to content
Snippets Groups Projects
Commit 724c0b7e authored by Allen Gilliland's avatar Allen Gilliland
Browse files

fix bug in hour-of-day assertion.

parent 89b92e6e
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@
that are scheduled to run and send them."
[hour weekday monthday monthweek]
{:pre [(integer? hour)
(and (<= 0 hour) (> 23 hour))
(and (<= 0 hour) (>= 23 hour))
(pulse-channel/day-of-week? weekday)
(contains? #{:first :last :mid :other} monthday)
(contains? #{:first :last :other} monthweek)]}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment