bugfix kintone get apps

This commit is contained in:
2024-12-09 15:33:47 +09:00
parent 9b1ae3bb5b
commit 21e0b9d6df
7 changed files with 14 additions and 8 deletions

View File

@@ -1,6 +1,9 @@
import logging
def test_usr_login(test_client,test_user):
response = test_client.post("/api/token", data={"username": test_user["email"], "password": test_user["password"]})
data = response.json()
logging.error(data)
assert response.status_code == 200
assert "access_token" in response.json()
assert "token_type" in response.json()