summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--heat/tests/openstack/mistral/test_cron_trigger.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/heat/tests/openstack/mistral/test_cron_trigger.py b/heat/tests/openstack/mistral/test_cron_trigger.py
index 939452f61..e3ab251e0 100644
--- a/heat/tests/openstack/mistral/test_cron_trigger.py
+++ b/heat/tests/openstack/mistral/test_cron_trigger.py
@@ -28,7 +28,7 @@ resources:
type: OS::Mistral::CronTrigger
properties:
name: my_cron_trigger
- pattern: "* * 0 * *"
+ pattern: "* * 1 * *"
workflow: {'name': 'get_first_glance_image', 'input': {} }
count: 3
first_time: "2015-04-08 06:20"
@@ -77,7 +77,7 @@ class MistralCronTriggerTest(common.HeatTestCase):
expected_state = (ct.CREATE, ct.COMPLETE)
self.assertEqual(expected_state, ct.state)
args, kwargs = self.client.cron_triggers.create.call_args
- self.assertEqual('* * 0 * *', kwargs['pattern'])
+ self.assertEqual('* * 1 * *', kwargs['pattern'])
self.assertEqual('get_first_glance_image', args[1])
self.assertEqual({}, kwargs['workflow_input'])
self.assertEqual('2015-04-08 06:20', kwargs['first_time'])