Fix typos

This commit is contained in:
Kian-Meng Ang
2022-08-04 23:06:54 +08:00
parent 961bb6c5f4
commit bb42841a66
19 changed files with 43 additions and 43 deletions

View File

@@ -51,7 +51,7 @@ pub async fn uname_email_exists_works(data: ArcData) {
let cookies = get_cookie!(signin_resp);
let app = get_app!(data).await;
// chech if get user secret works
// check if get user secret works
let resp = test::call_service(
&app,
test::TestRequest::get()
@@ -62,7 +62,7 @@ pub async fn uname_email_exists_works(data: ArcData) {
.await;
assert_eq!(resp.status(), StatusCode::OK);
// chech if get user secret works
// check if get user secret works
let resp = test::call_service(
&app,
test::TestRequest::post()
@@ -178,7 +178,7 @@ pub async fn email_udpate_password_validation_del_userworks(data: ArcData) {
)
.await;
// wrong password while deleteing account
// wrong password while deleting account
let mut payload = Password {
password: NAME.into(),
};