Skip to content

Commit

Permalink
chore: fix test inversion
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed May 16, 2024
1 parent 444068f commit 48540bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/functional/multitenant/apns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async fn tenant_delete(ctx: &mut EchoServerContext) {
assert!(response.status().is_success());
let response = response.json::<GetTenantResponse>().await.unwrap();
println!("response: {response:?}");
assert!(response
assert!(!response
.enabled_providers
.contains(&PROVIDER_APNS.to_owned()));
}
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/multitenant/fcm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async fn tenant_delete(ctx: &mut EchoServerContext) {
assert!(response.status().is_success());
let response = response.json::<GetTenantResponse>().await.unwrap();
println!("response: {response:?}");
assert!(response
assert!(!response
.enabled_providers
.contains(&PROVIDER_FCM.to_owned()));

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/multitenant/fcm_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async fn tenant_delete(ctx: &mut EchoServerContext) {
assert!(response.status().is_success());
let response = response.json::<GetTenantResponse>().await.unwrap();
println!("response: {response:?}");
assert!(response
assert!(!response
.enabled_providers
.contains(&PROVIDER_FCM_V1.to_owned()));
}
Expand Down

0 comments on commit 48540bb

Please sign in to comment.