From c613c98e376e822544cfbef5d69fc05cf672d11d Mon Sep 17 00:00:00 2001 From: Joseph Lyons Date: Wed, 16 Nov 2022 17:28:50 -0500 Subject: [PATCH] Move comment to correct location --- crates/collab/src/db_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/collab/src/db_tests.rs b/crates/collab/src/db_tests.rs index c4e95f10ce..b3f964b8a7 100644 --- a/crates/collab/src/db_tests.rs +++ b/crates/collab/src/db_tests.rs @@ -646,7 +646,6 @@ async fn test_signups() { let usernames = (0..8).map(|i| format!("person-{i}")).collect::>(); - // people sign up on the waitlist let all_signups = usernames .iter() .enumerate() @@ -661,8 +660,9 @@ async fn test_signups() { }) .collect::>(); + // people sign up on the waitlist for signup in &all_signups { - // Users can sign up multiple times without issues + // users can sign up multiple times without issues for _ in 0..2 { db.create_signup(&signup).await.unwrap(); }