Use println! on success instead of eprintln!

Co-Authored-By: Phil Hansch <dev@phansch.net>
This commit is contained in:
Philipp Krones 2019-11-28 17:48:29 +01:00 committed by GitHub
parent a6289ccd4c
commit 82066d2f0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}