X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Faggregates%2Fcommunity_aggregates.rs;h=950e68d3738a121ada292b373c8128af40afd9a9;hb=3c111b3062e69b19e68a9b537c23a7e61ae34e94;hp=fc8cf0b063c40ebd936b4580102af10f937cd273;hpb=d4ee171b085d8c7168b3c21b23177377360ff92f;p=lemmy.git diff --git a/crates/db_schema/src/aggregates/community_aggregates.rs b/crates/db_schema/src/aggregates/community_aggregates.rs index fc8cf0b0..950e68d3 100644 --- a/crates/db_schema/src/aggregates/community_aggregates.rs +++ b/crates/db_schema/src/aggregates/community_aggregates.rs @@ -66,7 +66,7 @@ mod tests { let first_person_follow = CommunityFollowerForm { community_id: inserted_community.id, person_id: inserted_person.id, - pending: Some(false), + pending: false, }; CommunityFollower::follow(&conn, &first_person_follow).unwrap(); @@ -74,7 +74,7 @@ mod tests { let second_person_follow = CommunityFollowerForm { community_id: inserted_community.id, person_id: another_inserted_person.id, - pending: Some(false), + pending: false, }; CommunityFollower::follow(&conn, &second_person_follow).unwrap(); @@ -82,7 +82,7 @@ mod tests { let another_community_follow = CommunityFollowerForm { community_id: another_inserted_community.id, person_id: inserted_person.id, - pending: Some(false), + pending: false, }; CommunityFollower::follow(&conn, &another_community_follow).unwrap();