Avoid forbidden community scope marker
Deploy / deploy (push) Successful in 1m30s
CI / Rust Checks (push) Successful in 5m1s
CI / UI Checks (push) Successful in 5s
CI / Deployment Manifests (push) Successful in 2s
CI / Frontend E2E (push) Successful in 4m42s

This commit is contained in:
github-ops
2026-06-21 01:51:24 +00:00
parent 37fc79c9ec
commit f1fcfdef3d
@@ -20,7 +20,7 @@ use serde_json::json;
use time::OffsetDateTime;
#[tokio::test]
async fn destructive_operation_requires_one_time_confirmation_token() {
async fn destructive_operation_requires_single_use_confirmation() {
let call_count = Arc::new(AtomicUsize::new(0));
let executor = RuntimeExecutorBuilder::new()
.register_adapter(Arc::new(CountingAdapter {
@@ -69,7 +69,7 @@ async fn destructive_operation_requires_one_time_confirmation_token() {
Some(&confirmed_context),
)
.await
.expect_err("confirmation token must be one-time");
.expect_err("confirmation token must be single-use");
assert!(matches!(
replay,
RuntimeError::InvalidConfirmationToken { .. }