File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -991,12 +991,12 @@ mod tests {
991
991
TestResult :: BuildFail ( FailureReason :: Unknown )
992
992
) ;
993
993
assert_eq ! (
994
- ( & gh_result. runs[ 0 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ,
995
- "stable/gh/brson.hello-rs"
994
+ Path :: new ( ( & gh_result. runs[ 0 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ) ,
995
+ Path :: new ( "stable/gh/brson.hello-rs" )
996
996
) ;
997
997
assert_eq ! (
998
- ( & gh_result. runs[ 1 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ,
999
- "beta/gh/brson.hello-rs"
998
+ Path :: new ( ( & gh_result. runs[ 1 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ) ,
999
+ Path :: new ( "beta/gh/brson.hello-rs" )
1000
1000
) ;
1001
1001
1002
1002
assert_eq ! ( reg_result. name. as_str( ) , "syn-1.0.0" ) ;
@@ -1014,12 +1014,12 @@ mod tests {
1014
1014
TestResult :: BuildFail ( FailureReason :: Unknown )
1015
1015
) ;
1016
1016
assert_eq ! (
1017
- ( & reg_result. runs[ 0 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ,
1018
- "stable/reg/syn-1.0.0"
1017
+ Path :: new ( ( & reg_result. runs[ 0 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ) ,
1018
+ Path :: new ( "stable/reg/syn-1.0.0" )
1019
1019
) ;
1020
1020
assert_eq ! (
1021
- ( & reg_result. runs[ 1 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ,
1022
- "beta/reg/syn-1.0.0"
1021
+ Path :: new ( ( & reg_result. runs[ 1 ] ) . as_ref( ) . unwrap( ) . log. as_str( ) ) ,
1022
+ Path :: new ( "beta/reg/syn-1.0.0" )
1023
1023
) ;
1024
1024
1025
1025
assert_eq ! (
You can’t perform that action at this time.
0 commit comments