test_propfind: Revert assert_eq order

This commit is contained in:
Lennart
2025-11-22 18:48:36 +01:00
parent f29c8fa925
commit a79e1901b8

View File

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