style(call): apply rustfmt to connection.rs and registration.rs

Pre-existing fmt drift in two files touched during the call-completion
batch (remote_safe field, dispatch helpers). Brings cargo fmt --check
clean for the review gate.
This commit is contained in:
2026-06-26 12:57:14 +00:00
parent 1e5f94b06b
commit 404d00ae1a
2 changed files with 31 additions and 10 deletions

View File

@@ -775,7 +775,10 @@ mod tests {
None,
Capabilities::new(),
);
assert!(!reg.remote_safe, "remote_safe must default to false (ADR-028 §4)");
assert!(
!reg.remote_safe,
"remote_safe must default to false (ADR-028 §4)"
);
}
#[test]