mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
Use println!
on success instead of eprintln!
Co-Authored-By: Phil Hansch <dev@phansch.net>
This commit is contained in:
parent
a6289ccd4c
commit
82066d2f0e
@ -65,7 +65,7 @@ fn integration_test() {
|
||||
match output.status.code() {
|
||||
Some(code) => {
|
||||
if code == 0 {
|
||||
eprintln!("Compilation successful");
|
||||
println!("Compilation successful");
|
||||
} else {
|
||||
eprintln!("Compilation failed. Exit code: {}", code);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user