We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6aacb3 commit bdd1ae1Copy full SHA for bdd1ae1
src/render.rs
@@ -928,7 +928,12 @@ mod tests {
928
.expect("ingest event with a tag");
929
930
let sub_id = ndb.subscribe(&[wait_filter, wait_filter_2]).expect("sub");
931
- let _r = ndb.wait_for_notes(sub_id, 2).await;
+ let _ = ndb
932
+ .wait_for_notes(sub_id, 2)
933
+ .await
934
+ .expect("wait for note ingestion to complete");
935
+
936
+ tokio::time::sleep(Duration::from_millis(50)).await;
937
938
{
939
let txn = Transaction::new(&ndb).expect("transaction for d-tag lookup");
0 commit comments