Use println!
on success instead of eprintln!
Co-Authored-By: Phil Hansch <dev@phansch.net>
This commit is contained in:
parent
a6289ccd4c
commit
82066d2f0e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue