Teardown after delete_channel

This commit is contained in:
bitfl0wer 2023-05-29 18:29:08 +02:00
parent 6cb400b3d0
commit b4cac5a65c
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,7 @@ async fn delete_channel() {
let mut bundle = common::setup().await;
let result = bundle
.channel
.clone()
.delete(
&bundle.user.token,
bundle.instance.urls.get_api(),
@ -35,4 +36,5 @@ async fn delete_channel() {
)
.await;
assert!(result.is_none());
common::teardown(bundle).await
}