@@ -49,12 +49,12 @@ fn test_plan_command_basic() {
4949 0 , // unrestricted_level
5050 true , // rename_files
5151 true , // rename_dirs
52- vec ! [ ] , // exclude_styles
53- vec ! [ ] , // include_styles
54- vec ! [ ] , // only_styles
52+ & [ ] , // exclude_styles
53+ & [ ] , // include_styles
54+ & [ ] , // only_styles
5555 vec ! [ ] , // exclude_match
5656 None , // plan_out
57- Some ( "table" . to_string ( ) ) , // preview_format
57+ Some ( & "table" . to_string ( ) ) , // preview_format
5858 true , // dry_run
5959 true , // fixed_table_width - for consistent test output
6060 false , // use_color
@@ -88,12 +88,12 @@ fn test_plan_command_with_styles() {
8888 0 , // unrestricted_level
8989 true , // rename_files
9090 true , // rename_dirs
91- vec ! [ Style :: Kebab , Style :: Pascal , Style :: ScreamingSnake ] , // exclude_styles
92- vec ! [ ] , // include_styles
93- vec ! [ ] , // only_styles
91+ & [ Style :: Kebab , Style :: Pascal , Style :: ScreamingSnake ] , // exclude_styles
92+ & [ ] , // include_styles
93+ & [ ] , // only_styles
9494 vec ! [ ] , // exclude_match
9595 None , // plan_out
96- Some ( "table" . to_string ( ) ) , // preview_format
96+ Some ( & "table" . to_string ( ) ) , // preview_format
9797 true , // dry_run
9898 true , // fixed_table_width - for consistent test output
9999 false , // use_color
@@ -119,12 +119,12 @@ fn test_plan_command_with_styles() {
119119 0 , // unrestricted_level
120120 true , // rename_files
121121 true , // rename_dirs
122- vec ! [ ] , // exclude_styles
123- vec ! [ Style :: Title , Style :: Train ] , // include_styles
124- vec ! [ ] , // only_styles
122+ & [ ] , // exclude_styles
123+ & [ Style :: Title , Style :: Train ] , // include_styles
124+ & [ ] , // only_styles
125125 vec ! [ ] , // exclude_match
126126 None , // plan_out
127- Some ( "table" . to_string ( ) ) , // preview_format
127+ Some ( & "table" . to_string ( ) ) , // preview_format
128128 true , // dry_run
129129 true , // fixed_table_width - for consistent test output
130130 false , // use_color
0 commit comments