Adding default provides of the task name

This commit is contained in:
Kinesin Data Technologies Incorporated
2022-10-05 12:48:29 -03:00
parent 8f6e96e989
commit bb3c0d3972
2 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ impl WorldDefinition {
.map(|(tn, td)| {
(
tn.clone(),
td.to_task(self.calendars.get(&td.calendar_name).unwrap()),
td.to_task(tn, self.calendars.get(&td.calendar_name).unwrap()),
)
})
.collect();