1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

🐛 Fix invalid password

This commit is contained in:
Stefano Pigozzi 2021-05-07 21:24:33 +02:00
parent 3529af69f5
commit d7e175c3f5
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01

View file

@ -40,7 +40,7 @@ def flask_client():
@pytest.fixture()
def access_token(flask_client):
response = flask_client.post("/api/v1/login", json={
"username": "admin",
"email": "admin@admin.com",
"password": "password"
})
assert response.json is not None