Skip to content

Commit 7a675b9

Browse files
committed
ctest: Add translation of Rust types.
1 parent 702246d commit 7a675b9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ctest-next/tests/basic.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ fn bless_equal(new_file: impl AsRef<Path>, old_file: impl AsRef<Path>) -> Result
3535
let new_content = fs::read_to_string(&new_file)?.replace("\r\n", "\n");
3636
let old_content = fs::read_to_string(&old_file)?.replace("\r\n", "\n");
3737

38+
println!("{:#?}\n---\n{:#?}", new_content, old_content);
39+
3840
let equal = new_content == old_content;
3941
if env::var("LIBCBLESS").is_ok() && !equal {
4042
fs::write(old_file, new_content)?;

0 commit comments

Comments
 (0)