File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ fn environment_block(
308
308
// Have the last values added take precedence over the first.
309
309
// This is simpler than needing to track duplicates and explicitly override
310
310
// them.
311
- environment_variables. extend ( environment_file_block. into_iter ( ) ) ;
311
+ environment_variables. extend ( environment_file_block) ;
312
312
for ( f, replace_with) in & [ stable_stamp_mappings, volatile_stamp_mappings] . concat ( ) {
313
313
for value in environment_variables. values_mut ( ) {
314
314
let from = format ! ( "{{{f}}}" ) ;
Original file line number Diff line number Diff line change @@ -84,9 +84,9 @@ mod test {
84
84
85
85
#[ test]
86
86
fn test_read_to_array ( ) {
87
- let input = r# "some escaped \\\
87
+ let input = r"some escaped \\\
88
88
string
89
- with other lines"#
89
+ with other lines"
90
90
. to_owned ( ) ;
91
91
let expected = vec ! [
92
92
r#"some escaped \
You can’t perform that action at this time.
0 commit comments