Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Companion for Taskmanager: Remove clean_shutdown
  • Loading branch information
bkchr committed Nov 19, 2021
commit 723c6a2a6a18bfdde3f0b5b8590ed634affbc72e
3 changes: 0 additions & 3 deletions node/test/service/tests/build-blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,4 @@ async fn ensure_test_service_build_blocks() {
_ = t3 => panic!("service Bob failed"),
}
}

alice.task_manager.clean_shutdown().await;
bob.task_manager.clean_shutdown().await;
}
2 changes: 0 additions & 2 deletions node/test/service/tests/call-function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,4 @@ async fn call_function_actually_work() {
let result = object.get("result");
let result = result.expect("key result exists");
assert_eq!(result.as_str().map(|x| x.starts_with("0x")), Some(true), "result starts with 0x");

alice.task_manager.clean_shutdown().await;
}
6 changes: 0 additions & 6 deletions parachain/test-parachains/adder/collator/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,4 @@ async fn collating_using_adder_collator() {

// Wait until the collator received `12` seconded statements for its collations.
collator.wait_for_seconded_collations(12).await;

join!(
alice.task_manager.clean_shutdown(),
bob.task_manager.clean_shutdown(),
charlie.task_manager.clean_shutdown(),
);
}