diff --git a/tests/net.rs b/tests/net.rs index ac210ce..48bd2c2 100644 --- a/tests/net.rs +++ b/tests/net.rs @@ -290,7 +290,7 @@ async fn test_post_by_header() { .send( client .post("https://some.other.url") - .body("nay body") + .body("any body") .header("test", "match"), ) .await @@ -323,7 +323,7 @@ async fn test_post_by_header_wrong_value() { .send( client .post("https://some.other.url") - .body("nay body") + .body("any body") .header("test", "no match"), ) .await;