We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9defcd2 commit 7787e09Copy full SHA for 7787e09
cli/tests/it/script.rs
@@ -753,6 +753,11 @@ forgetest_async!(
753
std::fs::read_to_string("cache/Broadcast.t.sol/31337/run-latest.json").unwrap();
754
let run_log = re.replace_all(&run_log, "");
755
756
+ // Clean up carriage return OS differences
757
+ let re = Regex::new(r#"\\r\\n"#).unwrap();
758
+ let fixtures_log = re.replace_all(&fixtures_log, "\n");
759
+ let run_log = re.replace_all(&run_log, "\n");
760
+
761
pretty_assertions::assert_eq!(fixtures_log, run_log);
762
}
763
);
0 commit comments