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-06 10:32:04 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-06 10:32:04 +0000
commitad6b8a825a500896d613fed72c11e7cbce3ddfd9 (patch)
treeb82ac1e97f5f83b20fad09ce0a829533888d2fdd /grasp-audit/src/specs
parent4f88b6d83d490096a87ce08a66ef9edf619ad5a2 (diff)
fix show rejection error
Diffstat (limited to 'grasp-audit/src/specs')
-rw-r--r--grasp-audit/src/specs/grasp01/event_acceptance_policy.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/grasp-audit/src/specs/grasp01/event_acceptance_policy.rs b/grasp-audit/src/specs/grasp01/event_acceptance_policy.rs
index 8a9ebcb..d235eb0 100644
--- a/grasp-audit/src/specs/grasp01/event_acceptance_policy.rs
+++ b/grasp-audit/src/specs/grasp01/event_acceptance_policy.rs
@@ -480,8 +480,7 @@ impl EventAcceptancePolicyTests {
480 ) -> Result<(), String> { 480 ) -> Result<(), String> {
481 let event_id = event.id; 481 let event_id = event.id;
482 482
483 client.send_event(event).await 483 client.send_event(event).await?;
484 .map_err(|e| e.to_string())?;
485 484
486 tokio::time::sleep(Duration::from_millis(100)).await; 485 tokio::time::sleep(Duration::from_millis(100)).await;
487 486