upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit/src/specs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-05 11:05:53 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-05 11:09:21 +0000
commitff00d106da0abd734a233e6445cdd81ffb5f1d9f (patch)
treeeb9b5b552e653104c63c29b250670628d21dd368 /grasp-audit/src/specs
parent86077d24e7cc8ff9d474a5947f0151d005f9f747 (diff)
docs: fixed desired grasp-audit behaviour in README.md
Diffstat (limited to 'grasp-audit/src/specs')
-rw-r--r--grasp-audit/src/specs/grasp01_nostr_relay.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/grasp-audit/src/specs/grasp01_nostr_relay.rs b/grasp-audit/src/specs/grasp01_nostr_relay.rs
index ca84a4b..7c4ef1e 100644
--- a/grasp-audit/src/specs/grasp01_nostr_relay.rs
+++ b/grasp-audit/src/specs/grasp01_nostr_relay.rs
@@ -653,9 +653,8 @@ mod tests {
653 #[tokio::test] 653 #[tokio::test]
654 #[ignore] // Requires running relay 654 #[ignore] // Requires running relay
655 async fn test_grasp01_nostr_relay_against_relay() { 655 async fn test_grasp01_nostr_relay_against_relay() {
656 // Read relay URL from environment variable, default to localhost:8081 656 // Read relay URL from environment variable - must be supplied
657 let relay_url = std::env::var("RELAY_URL") 657 let relay_url = std::env::var("RELAY_URL")?;
658 .unwrap_or_else(|_| "ws://localhost:8081".to_string());
659 658
660 let config = AuditConfig::ci(); 659 let config = AuditConfig::ci();
661 let client = AuditClient::new(&relay_url, config) 660 let client = AuditClient::new(&relay_url, config)