From 60e079672eb0c16a417767c840a12e67b3f4d9e9 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 1 Dec 2024 20:58:05 +0000 Subject: [PATCH] fix(net): typo in test data --- tests/net.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;