fmt: applied formatting to refactored mcp_servers and tools lists

This commit is contained in:
2026-06-03 14:02:06 -06:00
parent 0c84eea705
commit 8cc78358fc
7 changed files with 14 additions and 25 deletions
+2 -8
View File
@@ -183,13 +183,7 @@ mod tests {
fn build_extractor_role_disables_tools_and_mcp() {
let role = build_extractor_role().expect("builtin role must exist");
assert_eq!(
role.enabled_tools().as_deref(),
Some([].as_slice())
);
assert_eq!(
role.enabled_mcp_servers().as_deref(),
Some([].as_slice())
);
assert_eq!(role.enabled_tools().as_deref(), Some([].as_slice()));
assert_eq!(role.enabled_mcp_servers().as_deref(), Some([].as_slice()));
}
}