We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0896c95 commit c2ff7acCopy full SHA for c2ff7ac
xtask/src/hooks.rs
@@ -234,14 +234,9 @@ pub fn test(
234
if python {
235
tests.push("python");
236
}
237
- let join_to = tests.len() - 1;
238
- let mut joined = tests[0..join_to].join(", ");
239
- if join_to > 1 {
240
- joined.push(',');
241
- }
242
msg_info.info(format_args!(
243
- "Running {joined} and {} tests.",
244
- tests[join_to]
+ "Running {} tests.",
+ tests.join(',')
245
))?;
246
247
let channel = get_channel_prefer_nightly(msg_info, toolchain)?;
0 commit comments