pull/3420/head
dull b 2023-07-03 18:42:04 +00:00
parent 50ab303c42
commit 350fba29a8
1 changed files with 3 additions and 3 deletions

View File

@ -145,21 +145,21 @@ mod tests {
assert_eq!(0, after_post_like_remove.post_score);
Comment::update(
pool,
&mut *conn,
inserted_comment.id,
&CommentUpdateForm::builder().removed(Some(true)).build(),
)
.await
.unwrap();
Comment::update(
pool,
&mut *conn,
inserted_child_comment.id,
&CommentUpdateForm::builder().removed(Some(true)).build(),
)
.await
.unwrap();
let after_parent_comment_removed = PersonAggregates::read(pool, inserted_person.id)
let after_parent_comment_removed = PersonAggregates::read(&mut *conn, inserted_person.id)
.await
.unwrap();
assert_eq!(0, after_parent_comment_removed.comment_count);