@@ -18,7 +18,7 @@ fn test_run_config_executable_path_overrides_config_file() -> Result<(), Box<dyn
1818
1919 let mut run_config = build_run_config ( project_path, ".github/CODEOWNERS" ) ;
2020 // Use a relative path that gets displayed as-is in error messages
21- run_config. executable_path = Some ( "my-wrapper-tool" . to_string ( ) ) ;
21+ run_config. executable_name = Some ( "my-wrapper-tool" . to_string ( ) ) ;
2222
2323 let result = validate ( & run_config, vec ! [ ] ) ;
2424
@@ -50,7 +50,7 @@ fn test_run_config_without_executable_path_uses_config_file() -> Result<(), Box<
5050 // This fixture has executable_name: "bin/codeownership" in config
5151
5252 let mut run_config = build_run_config ( project_path, ".github/CODEOWNERS" ) ;
53- run_config. executable_path = None ; // Explicitly no override
53+ run_config. executable_name = None ; // Explicitly no override
5454
5555 let result = validate ( & run_config, vec ! [ ] ) ;
5656
@@ -78,7 +78,7 @@ fn test_run_config_executable_path_overrides_default() -> Result<(), Box<dyn Err
7878 // This fixture has NO executable_name in config (uses default "codeowners")
7979
8080 let mut run_config = build_run_config ( project_path, ".github/CODEOWNERS" ) ;
81- run_config. executable_path = Some ( "custom-command" . to_string ( ) ) ;
81+ run_config. executable_name = Some ( "custom-command" . to_string ( ) ) ;
8282
8383 let result = validate ( & run_config, vec ! [ ] ) ;
8484
0 commit comments