We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8b387d + e1a2ab5 commit 1529682Copy full SHA for 1529682
test/src/cli.rs
@@ -404,13 +404,13 @@ fn get_format(
404
Some("terse") => OutputFormat::Terse,
405
Some("json") => {
406
if !allow_unstable {
407
- return Err("The \"json\" format is only accepted on the nightly compiler".into());
+ return Err("The \"json\" format is only accepted on the nightly compiler with -Z unstable-options".into());
408
}
409
OutputFormat::Json
410
411
Some("junit") => {
412
413
- return Err("The \"junit\" format is only accepted on the nightly compiler".into());
+ return Err("The \"junit\" format is only accepted on the nightly compiler with -Z unstable-options".into());
414
415
OutputFormat::Junit
416
0 commit comments