Skip to content

Commit cf45547

Browse files
committed
test(cluster): add missing crdt field to schema-sync fixtures
CollectionDescriptor fixtures in the schema-sync tests predated the crdt field on CollectionDescriptor and no longer compiled.
1 parent c1ef0d8 commit cf45547

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

nodedb-cluster-tests/tests/sync_collection_schema.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ fn descriptor(
5858
partition_strategy: PartitionStrategy::default_for_collection_type(&collection_type),
5959
collection_type,
6060
bitemporal,
61+
crdt: false,
6162
fields: Vec::new(),
6263
primary: PrimaryEngine::Document,
6364
vector_primary: None,

nodedb-cluster-tests/tests/sync_collection_schema_emit.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ fn document_descriptor(name: &str) -> CollectionDescriptor {
4343
partition_strategy: PartitionStrategy::default_for_collection_type(&collection_type),
4444
collection_type,
4545
bitemporal: false,
46+
crdt: false,
4647
fields: Vec::new(),
4748
primary: PrimaryEngine::Document,
4849
vector_primary: None,

0 commit comments

Comments
 (0)