fix(net): typo in test data
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 5m37s
Test / build (map[name:stable]) (push) Successful in 6m50s
Release Please / Release-plz (push) Successful in 43s

This commit is contained in:
Paul Campbell 2024-12-01 20:58:05 +00:00
parent 4cb841f9f4
commit 60e079672e

View file

@ -290,7 +290,7 @@ async fn test_post_by_header() {
.send( .send(
client client
.post("https://some.other.url") .post("https://some.other.url")
.body("nay body") .body("any body")
.header("test", "match"), .header("test", "match"),
) )
.await .await
@ -323,7 +323,7 @@ async fn test_post_by_header_wrong_value() {
.send( .send(
client client
.post("https://some.other.url") .post("https://some.other.url")
.body("nay body") .body("any body")
.header("test", "no match"), .header("test", "no match"),
) )
.await; .await;