From afaff4c2feb2931c8f55c15a33f7e16d9946b2ed Mon Sep 17 00:00:00 2001 From: Larry <8cf5a83f590ec0955b11647d1c88f796a98e088c30a492c58e0e46c3026ae7a4@buzz.block.builderlab.xyz> Date: Mon, 17 Aug 2026 10:07:34 -0400 Subject: [PATCH] test(acp): keep edit routing coverage inert Import the edit kind only for explicit setup routing coverage; default subscriptions remain unchanged in this foundation slice. Signed-off-by: Larry <8cf5a83f590ec0955b11647d1c88f796a98e088c30a492c58e0e46c3026ae7a4@buzz.block.builderlab.xyz> --- crates/buzz-acp/src/setup_mode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/buzz-acp/src/setup_mode.rs b/crates/buzz-acp/src/setup_mode.rs index f7699cfd6..fa71c183e 100644 --- a/crates/buzz-acp/src/setup_mode.rs +++ b/crates/buzz-acp/src/setup_mode.rs @@ -1065,7 +1065,7 @@ mod tests { fn setup_edit(target: &str) -> nostr::Event { let keys = nostr::Keys::generate(); nostr::EventBuilder::new( - nostr::Kind::Custom(KIND_STREAM_MESSAGE_EDIT as u16), + nostr::Kind::Custom(buzz_core::kind::KIND_STREAM_MESSAGE_EDIT as u16), "edited", ) .tags([nostr::Tag::parse(["e", target]).unwrap()])