···4141 let b = e.next_u64();
4242 assert_ne!(
4343 a, b,
4444- "back-to-back os entropy collided; getrandom likely not actually wired up",
4444+ "back-to-back os entropy collided, getrandom likely not actually wired up",
4545 );
4646 }
4747}
+1-1
crates/xrpc/tests/aggregation.rs
···11881188 assert_eq!(
11891189 status,
11901190 StatusCode::OK,
11911191- "extractor key must match handler subject; body: {json}",
11911191+ "extractor key must match handler subject, body was {json}",
11921192 );
11931193 let items = json["items"].as_array().unwrap();
11941194 assert_eq!(items.len(), 1, "expected exactly one star edge");
+3-3
crates/xrpc/tests/extended.rs
···719719 assert_eq!(
720720 status,
721721 StatusCode::OK,
722722- "extractor key must match handler subject; body: {json}"
722722+ "extractor key must match handler subject, body was {json}"
723723 );
724724 let items = json["items"].as_array().unwrap();
725725 assert_eq!(items.len(), 1, "expected exactly one pipeline edge");
···758758 assert_eq!(
759759 status,
760760 StatusCode::OK,
761761- "owner-DID fallback must hydrate; body: {json}"
761761+ "owner-DID fallback must hydrate, body was {json}"
762762 );
763763 let items = json["items"].as_array().unwrap();
764764 assert_eq!(items.len(), 1);
···770770 items[0]["value"]["triggerMetadata"]["repo"]
771771 .get("repoDid")
772772 .is_none(),
773773- "fixture must omit repoDid; got {}",
773773+ "fixture must omit repoDid but got {}",
774774 items[0]["value"]["triggerMetadata"]["repo"]
775775 );
776776}
+1-1
crates/xrpc/tests/knot_proxy.rs
···392392 .count();
393393 assert_eq!(
394394 getrecord, 1,
395395- "slingshot must be hit exactly once; LRU serves the second proxy call",
395395+ "slingshot must be hit exactly once because the LRU serves the second proxy call",
396396 );
397397}
398398