From 4a2aa925107aea73964aaf40e21991cdcc70bacb Mon Sep 17 00:00:00 2001 From: Levi Neuwirth Date: Sat, 25 Jul 2026 11:13:57 -0400 Subject: [PATCH] style: rustfmt the find-file acceptance harness --- tests/find_file_acceptance.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/find_file_acceptance.rs b/tests/find_file_acceptance.rs index d975cd8..ad4c5b2 100644 --- a/tests/find_file_acceptance.rs +++ b/tests/find_file_acceptance.rs @@ -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 }