From 4bbac5ce4afe101b2db4b9f099ca772c5ce2932b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20Karsl=C4=B1?= Date: Thu, 16 Nov 2023 18:08:16 +0300 Subject: [PATCH] fix local_subscribers test --- crates/db_schema/src/aggregates/community_aggregates.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/db_schema/src/aggregates/community_aggregates.rs b/crates/db_schema/src/aggregates/community_aggregates.rs index 9c7248e2d..3d8d3b150 100644 --- a/crates/db_schema/src/aggregates/community_aggregates.rs +++ b/crates/db_schema/src/aggregates/community_aggregates.rs @@ -83,6 +83,7 @@ mod tests { .name("ismail_community_agg".into()) .public_key("pubkey".to_string()) .instance_id(another_inserted_instance.id) + .local(Some(false)) .build(); let third_inserted_person = Person::create(pool, &third_person).await.unwrap();