Fixing assert.

This commit is contained in:
Dessalines 2023-10-16 12:30:47 -04:00
parent baa3f74051
commit 16c7994023

View file

@ -774,7 +774,7 @@ mod tests {
.await
.unwrap();
assert_eq!(comments[0].comment.id, data.inserted_comment_2.id);
assert_eq!(comments[0].comment.distinguished, true);
assert!(comments[0].comment.distinguished);
cleanup(data, pool).await;
}