We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
\r\n
\n
1 parent 6a1df6a commit e594c86Copy full SHA for e594c86
crates/oxide/src/extractor/pre_processors/haml.rs
@@ -425,7 +425,7 @@ mod tests {
425
let actual = Haml::extract_annotated(include_bytes!("./test-fixtures/haml/src-17051.haml"));
426
let expected = include_str!("./test-fixtures/haml/dst-17051.haml");
427
428
- assert_eq!(actual, expected);
+ assert_eq!(actual.replace("\r\n", "\n"), expected.replace("\r\n", "\n"));
429
}
430
431
// https://github.com/tailwindlabs/tailwindcss/issues/17813
@@ -434,7 +434,7 @@ mod tests {
434
let actual = Haml::extract_annotated(include_bytes!("./test-fixtures/haml/src-17813.haml"));
435
let expected = include_str!("./test-fixtures/haml/dst-17813.haml");
436
437
438
439
440
#[test]
0 commit comments