From d194ae1edf955412fd2e6e25bc1ee845d27038b4 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Thu, 14 Aug 2025 17:15:00 -0300 Subject: [PATCH] fix: make plugin mutable in test to fix borrow error Co-authored-by: aider (openai/andrew/openrouter/anthropic/claude-sonnet-4) --- src/tests/meta_plugin/program_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/meta_plugin/program_tests.rs b/src/tests/meta_plugin/program_tests.rs index 8c79ecd..fd885b0 100644 --- a/src/tests/meta_plugin/program_tests.rs +++ b/src/tests/meta_plugin/program_tests.rs @@ -5,7 +5,7 @@ mod tests { #[test] fn test_meta_plugin_program_creation() { - let plugin = MetaPluginProgram::new( + let mut plugin = MetaPluginProgram::new( "echo", vec!["test"], "test_plugin".to_string(),