@@ -203,7 +203,7 @@ fn run_revocation_actions(
203
203
let action_file = unzipped. join ( "action_list" ) ;
204
204
205
205
if action_file. exists ( ) {
206
- action_data = std :: fs:: read_to_string ( & action_file)
206
+ action_data = fs:: read_to_string ( & action_file)
207
207
. expect ( "unable to read action_list" ) ;
208
208
209
209
let file_actions = parse_list ( & action_data) ?;
@@ -528,7 +528,7 @@ mod tests {
528
528
env!( "CARGO_MANIFEST_DIR" ) ,
529
529
"/tests/unzipped/test_ok.json"
530
530
) ;
531
- let json_str = std :: fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
531
+ let json_str = fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
532
532
let json = serde_json:: from_str ( & json_str) . unwrap ( ) ; //#[allow_ci]
533
533
let actions_dir =
534
534
& Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) ) . join ( "tests/actions/" ) ;
@@ -567,7 +567,7 @@ mod tests {
567
567
env!( "CARGO_MANIFEST_DIR" ) ,
568
568
"/tests/unzipped/test_err.json"
569
569
) ;
570
- let json_str = std :: fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
570
+ let json_str = fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
571
571
let json = serde_json:: from_str ( & json_str) . unwrap ( ) ; //#[allow_ci]
572
572
let actions_dir =
573
573
& Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) ) . join ( "tests/actions/" ) ;
@@ -602,7 +602,7 @@ mod tests {
602
602
let revocation_actions = "local_action_stand_alone.py, local_action_rev_script1.py" ;
603
603
}
604
604
}
605
- let json_str = std :: fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
605
+ let json_str = fs:: read_to_string ( json_file) . unwrap ( ) ; //#[allow_ci]
606
606
let json = serde_json:: from_str ( & json_str) . unwrap ( ) ; //#[allow_ci]
607
607
let actions_dir =
608
608
& Path :: new ( env ! ( "CARGO_MANIFEST_DIR" ) ) . join ( "tests/actions/" ) ;
0 commit comments