nostr-rs-relay

My dev fork of nostr-rs-relay
git clone git://jb55.com/nostr-rs-relay
Log | Files | Refs | README | LICENSE

commit 6f166433b590be44e089790095b3fb145bab2dea
parent 030b64de6295e9dcf972bfe4fe1599fa8fe9f86e
Author: Greg Heartsfield <scsibug@imap.cc>
Date:   Sun, 16 Jan 2022 08:36:52 -0600

fix: test failures

Diffstat:
Msrc/subscription.rs | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/subscription.rs b/src/subscription.rs @@ -208,10 +208,10 @@ mod tests { } #[test] - fn invalid_filter() { - // unrecognized field in filter - let raw_json = "[\"REQ\",\"some-id\",{\"foo\": 3}]"; - assert!(serde_json::from_str::<Subscription>(raw_json).is_err()); + fn legacy_filter() { + // legacy field in filter + let raw_json = "[\"REQ\",\"some-id\",{\"kind\": 3}]"; + assert!(serde_json::from_str::<Subscription>(raw_json).is_ok()); } #[test] @@ -249,7 +249,8 @@ mod tests { #[test] fn interest_time_and_id() -> Result<()> { // subscription with a filter for ID and time - let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"ids": ["abc"], "since": 1000}]"#)?; + let s: Subscription = + serde_json::from_str(r#"["REQ","xyz",{"ids": ["abc"], "since": 1000}]"#)?; let e = Event { id: "abc".to_owned(), pubkey: "".to_owned(),