nostrdb-rs

nostrdb in rust!
git clone git://jb55.com/nostrdb-rs
Log | Files | Refs | Submodules | README | LICENSE

commit b1bc794e9e5f2fb27dad0f95b6974ed2b81872d0
parent 1b23804447bd5cd527a3321b45788ead13393aa0
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 16 Dec 2024 16:51:24 -0800

test: "fix" flaky text

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/ndb.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ndb.rs b/src/ndb.rs @@ -487,7 +487,7 @@ mod tests { let res = ndb.poll_for_notes(sub, 1); assert_eq!(res, vec![]); - std::thread::sleep(std::time::Duration::from_millis(100)); + std::thread::sleep(std::time::Duration::from_millis(150)); // now we should have something let res = ndb.poll_for_notes(sub, 1); assert_eq!(res, vec![NoteKey::new(1)]);