Prevent random test failure (#4184)

This commit is contained in:
Nutomic 2023-11-21 16:08:19 +01:00 committed by GitHub
parent 49377c195e
commit 7ba1d98915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View file

@ -23,6 +23,7 @@ full = [
"tracing",
"ts-rs",
"actix-web",
"lemmy_db_schema/full",
]
[dependencies]

View file

@ -811,9 +811,17 @@ mod tests {
CommunityModerator::join(pool, &form).await.unwrap();
// Make sure that they come back as a mod in the list
let comments = CommentQuery::default().list(pool).await.unwrap();
let comments = CommentQuery {
sort: Some(CommentSortType::New),
..Default::default()
}
.list(pool)
.await
.unwrap();
assert!(comments[1].creator_is_moderator);
assert!(!comments[0].creator_is_moderator);
assert!(!comments[1].creator_is_moderator);
assert!(comments[4].creator_is_moderator);
cleanup(data, pool).await;
}