Fix the compilation (#22010)
https://github.com/zed-industries/zed/pull/21706 was merged after https://github.com/zed-industries/zed/pull/22004 and the CI missed that. Release Notes: - N/A
This commit is contained in:
parent
cbc226597c
commit
1ac60289fe
1 changed files with 4 additions and 1 deletions
|
@ -427,7 +427,10 @@ mod test_inventory {
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter_map(|(source_kind, task)| {
|
.filter_map(|(source_kind, task)| {
|
||||||
let id_base = source_kind.to_id_base();
|
let id_base = source_kind.to_id_base();
|
||||||
Some((source_kind, task.resolve_task(&id_base, task_context)?))
|
Some((
|
||||||
|
source_kind,
|
||||||
|
task.resolve_task(&id_base, Default::default(), task_context)?,
|
||||||
|
))
|
||||||
})
|
})
|
||||||
.map(|(source_kind, resolved_task)| (source_kind, resolved_task.resolved_label))
|
.map(|(source_kind, resolved_task)| (source_kind, resolved_task.resolved_label))
|
||||||
.collect()
|
.collect()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue