From 5e30e97f17e078b145300aacb9ec148f2beee565 Mon Sep 17 00:00:00 2001 From: Levi Neuwirth Date: Wed, 29 Jul 2026 18:54:22 -0400 Subject: [PATCH] style(stage2a): drop an unused mut the new delete row left behind Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01Lv428Fth9LRtffwJSsqH7T --- tests/resource_reconciliation_acceptance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resource_reconciliation_acceptance.rs b/tests/resource_reconciliation_acceptance.rs index 716ce76..f1ba6f9 100644 --- a/tests/resource_reconciliation_acceptance.rs +++ b/tests/resource_reconciliation_acceptance.rs @@ -329,7 +329,7 @@ fn acc28_delete_a_false_string_prefix_does_not_widen_the_kill_list() { fx.dir("foo"); let inside = fx.write("foo/a.txt", "in\n"); let sibling = fx.write("foobar.txt", "out\n"); - let mut state = editor(); + let state = editor(); open_as(&state, "KEEP", &fx.write("keep.txt", "k\n")); open_as(&state, "IN", &inside); open_as(&state, "OUT", &sibling);