From 1392fbef17dd3ec7527dcd542b92efcae0cefe53 Mon Sep 17 00:00:00 2001 From: Kayshen-X Date: Wed, 8 Jul 2026 01:06:46 +0800 Subject: [PATCH] fix(ci): avoid text in reveal registration fixture --- crates/op-host-services/src/design_agent_tools.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/op-host-services/src/design_agent_tools.rs b/crates/op-host-services/src/design_agent_tools.rs index 0575a9d83..deaee1dd1 100644 --- a/crates/op-host-services/src/design_agent_tools.rs +++ b/crates/op-host-services/src/design_agent_tools.rs @@ -880,7 +880,7 @@ mod tests { let (result, mutated) = execute_design_tool_with_reveals( &mut state, "batch_design", - r#"{"operations":"root=I(null,{type:'frame',name:'Root',width:120,height:80})\ntitle=I(root,{type:'text',name:'Title',content:'Hello',width:80,height:20})"}"#, + r#"{"operations":"root=I(null,{type:'frame',name:'Root',width:120,height:80})\nbox=I(root,{type:'rectangle',name:'Box',width:80,height:20})"}"#, Some(epoch), ); assert!(!result.is_error, "batch_design failed: {}", result.content);