From b321c094d2f89443cbe6514e9f8555f98fea0350 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Tue, 8 Sep 2026 13:29:09 +0000 Subject: [PATCH] Keep the new assert messages inside the format width --- node-graph/interpreted-executor/src/dynamic_executor.rs | 2 +- node-graph/libraries/core-types/src/arena.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/node-graph/interpreted-executor/src/dynamic_executor.rs b/node-graph/interpreted-executor/src/dynamic_executor.rs index f6c1460c75..294731eb70 100644 --- a/node-graph/interpreted-executor/src/dynamic_executor.rs +++ b/node-graph/interpreted-executor/src/dynamic_executor.rs @@ -43,7 +43,7 @@ fn assert_deep_element_glue() { ("graphic", core_types::record::has_deep_element_glue(std::any::TypeId::of::>())), ("artboard", core_types::record::has_deep_element_glue(std::any::TypeId::of::>())), ] { - assert!(registered, "deep element glue for `{name}` is not registered; the host must run `__node_registry_deep_element_{name}` before evaluating"); + assert!(registered, "deep element glue for `{name}` is missing; run `__node_registry_deep_element_{name}` first"); } } diff --git a/node-graph/libraries/core-types/src/arena.rs b/node-graph/libraries/core-types/src/arena.rs index f39958d511..5fbe3ddc9e 100644 --- a/node-graph/libraries/core-types/src/arena.rs +++ b/node-graph/libraries/core-types/src/arena.rs @@ -606,7 +606,7 @@ mod tests { assert!(unsafe { transient.move_park::(src, &second, 21) }.is_none(), "a sharer naming another destination is refused"); first.reset(); - assert!(unsafe { transient.move_park::(src, &first, 21) }.is_none(), "a destination that has flushed since is refused too"); + assert!(unsafe { transient.move_park::(src, &first, 21) }.is_none(), "a flushed destination is refused too"); } #[test]