From b4dfde469c75d3a6ba91eab88421486e9532a746 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Fri, 4 Sep 2026 10:35:11 -0700 Subject: [PATCH] Tests: declare the temp-dir counter in the hook cache-root tests The previous commit referenced TMP_SEQ there without defining it. Co-Authored-By: Claude Code Claude-Session: https://claude.ai/code/session_01Vau2X53xGTjjTCXWMVBoNY --- crates/hook/tests/cache_root_tests.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/hook/tests/cache_root_tests.rs b/crates/hook/tests/cache_root_tests.rs index 366e0d5bd..2827e6535 100644 --- a/crates/hook/tests/cache_root_tests.rs +++ b/crates/hook/tests/cache_root_tests.rs @@ -13,6 +13,8 @@ use impeccable_hook::hook_lib::{get_cache_path, get_pending_path, Runtime}; use impeccable_hook::hook; use serde_json::json; +static TMP_SEQ: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(0); + static HTML: MissingHtmlEngine = MissingHtmlEngine; static ENV_LOCK: Mutex<()> = Mutex::new(());