From 682559af50ca90f990c06ed369da50b54e5a29ac Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 17 Nov 2023 15:20:26 +0800 Subject: [PATCH] chore: clippy --- tests/user/update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/user/update.rs b/tests/user/update.rs index 87598ce8..e5c730fb 100644 --- a/tests/user/update.rs +++ b/tests/user/update.rs @@ -84,7 +84,7 @@ async fn update_user_email() { .await .unwrap(); - let new_email = format!("{}@appflowy.io", Uuid::new_v4().to_string()); + let new_email = format!("{}@appflowy.io", Uuid::new_v4()); c.update_user(UpdateUserParams::new().with_email(new_email.clone())) .await .unwrap();