Skip to content

Commit

Permalink
fixed body in change password test
Browse files Browse the repository at this point in the history
  • Loading branch information
bomzheg committed Jun 12, 2024
1 parent ab72019 commit 572c1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/api_full/test_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def test_change_password(client: AsyncClient, user: dto.User, token: Token
resp = await client.put(
"/users/me/password/",
cookies={"Authorization": f"{token.token_type} {token.access_token}"},
json={"password": "09876"},
json="09876",
follow_redirects=True,
)
assert resp.is_success
Expand Down

0 comments on commit 572c1f3

Please sign in to comment.