File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -985,9 +985,6 @@ mod tests {
985985
986986 let all_envs = result. all_envs ;
987987
988- // Verify that "PATH" is preserved
989- assert ! ( all_envs. contains_key( "PATH" ) ) ;
990-
991988 // Verify the complete PATH value matches expected
992989 let path_value = all_envs. get ( "PATH" ) . unwrap ( ) ;
993990 assert_eq ! (
@@ -1027,9 +1024,6 @@ mod tests {
10271024
10281025 let all_envs = result. all_envs ;
10291026
1030- // Verify that "PATH" is created when missing
1031- assert ! ( all_envs. contains_key( "PATH" ) ) ;
1032-
10331027 // Verify the complete PATH value matches expected (only node_modules/.bin paths, no existing path)
10341028 let path_value = all_envs. get ( "PATH" ) . unwrap ( ) ;
10351029 assert_eq ! (
@@ -1073,7 +1067,6 @@ mod tests {
10731067 let all_envs = result. all_envs ;
10741068
10751069 // Verify "PATH" exists and the complete value matches expected
1076- assert ! ( all_envs. contains_key( "PATH" ) ) ;
10771070 let path_value = all_envs. get ( "PATH" ) . unwrap ( ) ;
10781071 assert_eq ! (
10791072 path_value. as_ref( ) ,
You can’t perform that action at this time.
0 commit comments