Skip to content

Commit

Permalink
Use println! on success instead of eprintln!
Browse files Browse the repository at this point in the history
Co-Authored-By: Phil Hansch <dev@phansch.net>
  • Loading branch information
flip1995 and phansch committed Nov 28, 2019
1 parent a6289cc commit 82066d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 82066d2

Please sign in to comment.