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(
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue