Skip to content

Commit

Permalink
✅ Always use LF instead of CRLF whatever OS we are running on
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlm committed Jan 10, 2024
1 parent 4897216 commit a2f4899
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quickfix-spec-parser/tests/test_valid_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ fn check(expected: &'static [u8]) {
let txt = String::from_utf8(out.to_vec())
.unwrap()
.replace('\"', "'")
.replace("/>", " />");
.replace("/>", " />")
.replace("\r\n", "\n");

assert_eq!(Bytes::from(txt), Bytes::from_static(expected));
}
Expand Down

0 comments on commit a2f4899

Please sign in to comment.