Skip to content

Commit 00e980c

Browse files
committed
correct println
1 parent 3079bb0 commit 00e980c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cc-test/tests/output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn load_output(action: &str) -> (String, String) {
3838
let action_dir = PathBuf::from(env!("OUT_DIR")).join(action);
3939
let stdout = fs::read_to_string(action_dir.join("stdout")).unwrap();
4040
let stderr = fs::read_to_string(action_dir.join("stderr")).unwrap();
41-
println!("compile stdout: {:?}", action, stdout);
42-
println!("compile stderr: {:?}", action, stderr);
41+
println!("compile stdout: {:?}", stdout);
42+
println!("compile stderr: {:?}", stderr);
4343
(stdout, stderr)
4444
}

0 commit comments

Comments
 (0)