use similar-asserts for regression tests

This commit is contained in:
Lennart
2025-11-22 18:46:47 +01:00
parent 22a0337375
commit 54f1ee0788
4 changed files with 59 additions and 3 deletions

View File

@@ -39,9 +39,7 @@ async fn test_propfind() {
.unwrap()
.trim()
.replace("\r\n", "\n");
println!("{output}");
println!("{}, {} \n\n\n", output.len(), expected_output.len());
assert_eq!(output, expected_output);
similar_asserts::assert_eq!(output, expected_output);
}
}
}