style: cargo fmt on today's new code (883/884/886/opus-pin)

The mergemaster gates run rustfmt and rejected 864's merge because
several files I added/touched in master today had not been fmt'd.
Six files affected, mostly trivial line-wrapping nits. Fixes the
formatting gate for the next 864 merge attempt.
This commit is contained in:
dave
2026-04-30 22:15:37 +00:00
parent 66f340a7a3
commit 1251b869a6
6 changed files with 30 additions and 41 deletions
@@ -318,12 +318,12 @@ mod tests {
);
// Set the typed CRDT register (this is the path 871's migration uses).
let written =
crate::crdt_state::set_agent("9971_story_pin_in_crdt", Some("coder-opus"));
let written = crate::crdt_state::set_agent("9971_story_pin_in_crdt", Some("coder-opus"));
assert!(written, "set_agent should succeed for an existing item");
// The reader must return the CRDT register value, not None.
let agent = read_story_front_matter_agent(tmp.path(), "2_current", "9971_story_pin_in_crdt");
let agent =
read_story_front_matter_agent(tmp.path(), "2_current", "9971_story_pin_in_crdt");
assert_eq!(agent.as_deref(), Some("coder-opus"));
}
}