File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
integration-tests/tests/integration Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ archive.include = [
384384
385385 // The included file should be present, but the excluded file should not.
386386 for path in [ INCLUDED_PATH , TOP_LEVEL_FILE ] {
387- let contents = std:: fs:: read_to_string ( & extracted_target. join ( path) )
387+ let contents = std:: fs:: read_to_string ( extracted_target. join ( path) )
388388 . expect ( "extra file written to archive" ) ;
389389 assert_eq ! ( contents, "a test string" ) ;
390390 }
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ where
130130 let cmd = if let Some ( current_exe) = double_spawn. current_exe ( ) {
131131 let mut cmd = std:: process:: Command :: new ( current_exe) ;
132132 cmd. args ( [ DoubleSpawnInfo :: SUBCOMMAND_NAME , "--" , program. as_str ( ) ] ) ;
133- cmd. arg ( & shell_words:: join ( args) ) ;
133+ cmd. arg ( shell_words:: join ( args) ) ;
134134 cmd
135135 } else {
136136 let mut cmd = std:: process:: Command :: new ( program) ;
You can’t perform that action at this time.
0 commit comments