Teardown after delete_channel

This commit is contained in:
bitfl0wer 2023-05-29 18:29:08 +02:00
parent 05bc4a4647
commit 6bcbb0e470
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
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
}