Skip to content

Commit 42937d2

Browse files
committed
fix test formatting
1 parent 092678f commit 42937d2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/index.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,10 @@ async fn test_csv_body() -> actix_web::Result<()> {
270270
);
271271
let body = test::read_body(resp).await;
272272
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");
273+
assert_eq!(
274+
body_str,
275+
"id;msg\n0;Hello World !\n1;\"Tu gères ';' et '\"\"' ?\"\n"
276+
);
274277
Ok(())
275278
}
276279

0 commit comments

Comments
 (0)