fix test warning
This commit is contained in:
parent
1c69e289b7
commit
46af9a90ce
1 changed files with 4 additions and 1 deletions
|
@ -6906,7 +6906,10 @@ mod tests {
|
||||||
Some("Test Label"),
|
Some("Test Label"),
|
||||||
cx.update(|cx| cx.active_labeled_tasks().next())
|
cx.update(|cx| cx.active_labeled_tasks().next())
|
||||||
);
|
);
|
||||||
sender.send(()).await;
|
sender
|
||||||
|
.send(())
|
||||||
|
.await
|
||||||
|
.expect("Could not send message to complete task");
|
||||||
task.await;
|
task.await;
|
||||||
|
|
||||||
assert_eq!(None, cx.update(|cx| cx.active_labeled_tasks().next()));
|
assert_eq!(None, cx.update(|cx| cx.active_labeled_tasks().next()));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue