Move comment to correct location
This commit is contained in:
parent
4e4299d500
commit
c613c98e37
1 changed files with 2 additions and 2 deletions
|
@ -646,7 +646,6 @@ async fn test_signups() {
|
|||
|
||||
let usernames = (0..8).map(|i| format!("person-{i}")).collect::<Vec<_>>();
|
||||
|
||||
// people sign up on the waitlist
|
||||
let all_signups = usernames
|
||||
.iter()
|
||||
.enumerate()
|
||||
|
@ -661,8 +660,9 @@ async fn test_signups() {
|
|||
})
|
||||
.collect::<Vec<Signup>>();
|
||||
|
||||
// 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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue