mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
Use println! on success instead of eprintln!
Co-Authored-By: Phil Hansch <dev@phansch.net>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user