mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
fix test for forms/form (#610)
This commit is contained in:
parent
080db60175
commit
6571dfef82
@ -119,7 +119,7 @@ mod tests {
|
||||
name: "John".to_string(),
|
||||
})
|
||||
.to_request();
|
||||
let resp: ServiceResponse = app.call(req).await.unwrap();
|
||||
let resp: ServiceResponse = test::call_service(&app, req).await;
|
||||
|
||||
assert_eq!(resp.status(), StatusCode::OK);
|
||||
assert_eq!(
|
||||
@ -164,7 +164,7 @@ mod tests {
|
||||
name: "John".to_string(),
|
||||
})
|
||||
.to_request();
|
||||
let resp: ServiceResponse = app.call(req).await.unwrap();
|
||||
let resp: ServiceResponse = test::call_service(&app, req).await;
|
||||
|
||||
assert_eq!(resp.status(), StatusCode::OK);
|
||||
assert_eq!(
|
||||
@ -208,7 +208,7 @@ mod tests {
|
||||
name: "John".to_string(),
|
||||
})
|
||||
.to_request();
|
||||
let resp: ServiceResponse = app.call(req).await.unwrap();
|
||||
let resp: ServiceResponse = test::call_service(&app, req).await;
|
||||
|
||||
assert_eq!(resp.status(), StatusCode::OK);
|
||||
assert_eq!(
|
||||
|
Loading…
Reference in New Issue
Block a user