From 862344cfaf406497da5df00ac310b58cd9f61390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralph=20K=C3=BCpper?= Date: Sun, 16 Aug 2026 21:09:05 +0200 Subject: [PATCH] style(runtime): rustfmt param_type_guard test call sites Claude-Session: https://claude.ai/code/session_01AHvBYz7E6wWKv8kmvLLGpj --- crates/perry-runtime/src/param_type_guard.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/crates/perry-runtime/src/param_type_guard.rs b/crates/perry-runtime/src/param_type_guard.rs index 5fd0a49979..12193a969e 100644 --- a/crates/perry-runtime/src/param_type_guard.rs +++ b/crates/perry-runtime/src/param_type_guard.rs @@ -923,13 +923,19 @@ mod tests { ); assert_eq!( - guard(node, &descriptor(0, &[&tracked_single_field_node(true, b"next", 0)])), + guard( + node, + &descriptor(0, &[&tracked_single_field_node(true, b"next", 0)]) + ), 1 ); // Without it the walk runs out of depth and the caller conservatively // takes the generic function — never a hang, never a false accept. assert_eq!( - guard(node, &descriptor(0, &[&tracked_single_field_node(false, b"next", 0)])), + guard( + node, + &descriptor(0, &[&tracked_single_field_node(false, b"next", 0)]) + ), 0 ); }