upleb.uk

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

summaryrefslogtreecommitdiff
path: root/tests/nip01_compliance.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-12-03 11:38:07 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-12-03 11:38:07 +0000
commite30dfd5e5abb96cdc89b80f1d085466e55c347e0 (patch)
treec12c1d54d30f0541c9689acbcb3b64d54cc8b996 /tests/nip01_compliance.rs
parent2eaff5b79fed364d5eba5eb38e4b7bf76326884d (diff)
remove depricated audit mode label ci / production ~> isolated / shared
Diffstat (limited to 'tests/nip01_compliance.rs')
-rw-r--r--tests/nip01_compliance.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/nip01_compliance.rs b/tests/nip01_compliance.rs
index 6fb721a..045bddb 100644
--- a/tests/nip01_compliance.rs
+++ b/tests/nip01_compliance.rs
@@ -36,7 +36,7 @@ macro_rules! isolated_test {
36 #[tokio::test] 36 #[tokio::test]
37 async fn $test_name() { 37 async fn $test_name() {
38 let relay = TestRelay::start().await; 38 let relay = TestRelay::start().await;
39 let config = AuditConfig::ci(); 39 let config = AuditConfig::isolated();
40 let client = AuditClient::new(relay.url(), config) 40 let client = AuditClient::new(relay.url(), config)
41 .await 41 .await
42 .expect("Failed to create audit client"); 42 .expect("Failed to create audit client");
@@ -73,7 +73,7 @@ async fn test_relay_lifecycle() {
73 let url = relay.url().to_string(); 73 let url = relay.url().to_string();
74 74
75 // Verify we can connect 75 // Verify we can connect
76 let config = AuditConfig::ci(); 76 let config = AuditConfig::isolated();
77 let client = AuditClient::new(&url, config) 77 let client = AuditClient::new(&url, config)
78 .await 78 .await
79 .expect("Failed to connect to relay"); 79 .expect("Failed to connect to relay");
@@ -101,7 +101,7 @@ async fn test_parallel_relays() {
101 ); 101 );
102 102
103 // Both should be connectable 103 // Both should be connectable
104 let config = AuditConfig::ci(); 104 let config = AuditConfig::isolated();
105 105
106 let client1 = AuditClient::new(relay1.url(), config.clone()) 106 let client1 = AuditClient::new(relay1.url(), config.clone())
107 .await 107 .await