diff options
author | Cyborus <cyborus@cyborus.xyz> | 2024-05-27 19:09:01 +0200 |
---|---|---|
committer | Cyborus <cyborus@cyborus.xyz> | 2024-05-27 19:09:01 +0200 |
commit | 635a5b55dd8eff02c91a7c70ce6951c35e2b0667 (patch) | |
tree | d2677b2ffa68a72e40c344058f097853858770d8 | |
parent | add delays to allow forgejo's state to settle (diff) | |
download | forgejo-api-635a5b55dd8eff02c91a7c70ce6951c35e2b0667.tar.xz forgejo-api-635a5b55dd8eff02c91a7c70ce6951c35e2b0667.zip |
fix follower account email
Should be a valid email, but I guess Forgejo is stricter than that
-rw-r--r-- | tests/user.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/user.rs b/tests/user.rs index fb02088..9ca808d 100644 --- a/tests/user.rs +++ b/tests/user.rs @@ -41,7 +41,7 @@ async fn follow() { let option = CreateUserOption { created_at: None, - email: "follower@testing".into(), + email: "follower@no-reply.example.org".into(), full_name: None, login_name: None, must_change_password: Some(false), |