We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb0f29 commit 38bc3d4Copy full SHA for 38bc3d4
tests/api/v2/handlers/test_schedules_api.py
@@ -73,6 +73,9 @@ def expected_new_schedule_dump(new_schedule_payload):
73
schedule = ScheduleSchema().load(new_schedule_payload)
74
dump = schedule.schema.dump(schedule)
75
dump['task']['id'] = mock.ANY
76
+ if 'facts' in dump['task']['source']:
77
+ for f in dump['task']['source']['facts']:
78
+ f['created'] = mock.ANY
79
return dump
80
81
0 commit comments