fix(net): typo in test data
This commit is contained in:
parent
4cb841f9f4
commit
60e079672e
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue