File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
compiler/base/orchestrator/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2985,7 +2985,7 @@ mod tests {
2985
2985
}
2986
2986
}
2987
2987
2988
- const MAX_CONCURRENT_TESTS : LazyLock < usize > = LazyLock :: new ( || {
2988
+ static MAX_CONCURRENT_TESTS : LazyLock < usize > = LazyLock :: new ( || {
2989
2989
env:: var ( "TESTS_MAX_CONCURRENCY" )
2990
2990
. ok ( )
2991
2991
. and_then ( |v| v. parse ( ) . ok ( ) )
@@ -3538,7 +3538,7 @@ mod tests {
3538
3538
. await
3539
3539
. unwrap ( ) ;
3540
3540
3541
- assert ! ( response. success, "stderr: {}" , stderr ) ;
3541
+ assert ! ( response. success, "stderr: {stderr}" ) ;
3542
3542
assert_contains ! ( stderr, "Compiling" ) ;
3543
3543
assert_contains ! ( stderr, "Finished" ) ;
3544
3544
Original file line number Diff line number Diff line change @@ -1172,7 +1172,7 @@ mod test {
1172
1172
let next_result = this. 0 . pop_front ( ) . expect ( "FixedAsyncRead ran out of input" ) ;
1173
1173
1174
1174
if let Ok ( v) = & next_result {
1175
- buf. put_slice ( & v) ;
1175
+ buf. put_slice ( v) ;
1176
1176
}
1177
1177
1178
1178
Poll :: Ready ( next_result. map ( drop) )
You can’t perform that action at this time.
0 commit comments