From d1aa5af564b242bb89eaf463d540bce54c7d5f92 Mon Sep 17 00:00:00 2001 From: Cyborus Date: Fri, 15 Mar 2024 16:07:23 -0400 Subject: [PATCH] adjust created user's email in test --- tests/ci_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci_test.rs b/tests/ci_test.rs index 23724d5..c4d8a5d 100644 --- a/tests/ci_test.rs +++ b/tests/ci_test.rs @@ -316,7 +316,7 @@ async fn admin() { let user_opt = CreateUserOption { created_at: None, - email: "user@noreply.example.org".into(), + email: "pipis@noreply.example.org".into(), full_name: None, login_name: None, must_change_password: None, @@ -360,7 +360,7 @@ async fn admin() { assert!( users .iter() - .find(|u| u.email.as_ref().unwrap() == "user@noreply.example.org") + .find(|u| u.email.as_ref().unwrap() == "pipis@noreply.example.org") .is_some(), "could not find new user" );