style: rustfmt the find-file acceptance harness

This commit is contained in:
Levi Neuwirth 2026-07-25 11:13:57 -04:00
parent 2a0884b377
commit 4a2aa92510
1 changed files with 4 additions and 1 deletions

View File

@ -93,7 +93,10 @@ fn editor_in(dir: &std::path::Path) -> EditorState {
let state = EditorState::new();
state.lua_host.reopen_init_phase_for_testing();
let anchor_str = anchor.display().to_string();
exec(&state, &format!("pmacs.buffer.find_or_open({anchor_str:?})"));
exec(
&state,
&format!("pmacs.buffer.find_or_open({anchor_str:?})"),
);
state
}