remove login test

This commit is contained in:
bitfl0wer 2023-05-27 22:53:40 +02:00
parent daf4e923d5
commit 06c49c6895
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 0 additions and 19 deletions

View File

@ -21,22 +21,3 @@ async fn test_registration() {
bundle.instance.register_account(&reg).await.unwrap(); bundle.instance.register_account(&reg).await.unwrap();
common::teardown(bundle).await; 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;
}