We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 092678f commit 42937d2Copy full SHA for 42937d2
tests/index.rs
@@ -270,7 +270,10 @@ async fn test_csv_body() -> actix_web::Result<()> {
270
);
271
let body = test::read_body(resp).await;
272
let body_str = String::from_utf8(body.to_vec()).unwrap();
273
- assert_eq!(body_str, "id;msg\n0;Hello World !\n1;\"Tu gères ';' et '\"\"' ?\"\n");
+ assert_eq!(
274
+ body_str,
275
+ "id;msg\n0;Hello World !\n1;\"Tu gères ';' et '\"\"' ?\"\n"
276
+ );
277
Ok(())
278
}
279
0 commit comments