From 06c49c6895fa01c9729653ff52dd832c7a1f1be3 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Sat, 27 May 2023 22:53:40 +0200 Subject: [PATCH] remove login test --- tests/auth.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/auth.rs b/tests/auth.rs index 2b52cea..f90e229 100644 --- a/tests/auth.rs +++ b/tests/auth.rs @@ -21,22 +21,3 @@ async fn test_registration() { bundle.instance.register_account(®).await.unwrap(); common::teardown(bundle).await; } - -#[tokio::test] -async fn test_login() { - let mut bundle = common::setup().await; - let login_schema = types::LoginSchema::new( - "integrationtestuser".to_string(), - None, - Some(false), - None, - None, - None, - ); - bundle - .instance - .login_account(&login_schema.unwrap()) - .await - .unwrap(); - common::teardown(bundle).await; -}