Skip to content

Commit

Permalink
Add one more cron expression test case
Browse files Browse the repository at this point in the history
  • Loading branch information
honnix committed Oct 4, 2020
1 parent fd39f26 commit 25d4ef8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/flytekit/unit/common_tests/test_launch_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ def test_no_additional_inputs():
[
(_schedules.CronSchedule("* * ? * * *"), "* * ? * * *", None),
(_schedules.CronSchedule(cron_expression="* * ? * * *"), "* * ? * * *", None),
(_schedules.CronSchedule(cron_expression="0/15 * * * ? *"), "0/15 * * * ? *", None),
(_schedules.CronSchedule(schedule="* * * * *"), None, _schedule.Schedule.CronSchedule("* * * * *", None)),
(
_schedules.CronSchedule(schedule="* * * * *", offset="P1D"),
Expand Down

0 comments on commit 25d4ef8

Please sign in to comment.