Skip to content

Commit 0ba01de

Browse files
committed
f - Await async VSS store test helper
Compile the VSS persistence tests after the shared KV store helper moved to async persistence. Co-Authored-By: HAL 9000
1 parent 40e4aad commit 0ba01de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/io/vss_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ mod tests {
930930
VssStoreBuilder::new(entropy, vss_base_url, rand_store_id, Network::Testnet)
931931
.build_with_sigs_auth(HashMap::new())
932932
.unwrap();
933-
do_read_write_remove_list_persist(&vss_store);
933+
do_read_write_remove_list_persist(&vss_store).await;
934934
}
935935

936936
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
@@ -946,7 +946,7 @@ mod tests {
946946
.build_with_sigs_auth(HashMap::new())
947947
.unwrap();
948948

949-
do_read_write_remove_list_persist(&vss_store);
949+
do_read_write_remove_list_persist(&vss_store).await;
950950
drop(vss_store)
951951
}
952952
}

0 commit comments

Comments
 (0)