We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb9b7d commit 29df013Copy full SHA for 29df013
tests/integration.rs
@@ -68,13 +68,8 @@ fn integration_test() {
68
}
69
70
match output.status.code() {
71
- Some(code) => {
72
- if code == 0 {
73
- println!("Compilation successful");
74
- } else {
75
- eprintln!("Compilation failed. Exit code: {}", code);
76
- }
77
- },
+ Some(0) => println!("Compilation successful"),
+ Some(code) => eprintln!("Compilation failed. Exit code: {}", code),
78
None => panic!("Process terminated by signal"),
79
80
0 commit comments