Skip to content

Commit

Permalink
fix(ci)
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed Apr 27, 2024
1 parent e5c1eb0 commit 440e354
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/test_all_examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub fn test_run_examples() {
ans_path.push(path.file_name().expect("not file name"));
ans_path.set_extension("txt");
println!("checking {}", ans_path.display());
let expected_res = read_to_string(ans_path).unwrap();
let mut expected_res = read_to_string(ans_path).unwrap();
#[cfg(target_os = "windows")]
{
expected_res = expected_res.replace("\n", "\r\n");
Expand Down

0 comments on commit 440e354

Please sign in to comment.