mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-25 22:44:19 +00:00
🐛 Fix invalid password
This commit is contained in:
parent
3529af69f5
commit
d7e175c3f5
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ def flask_client():
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def access_token(flask_client):
|
def access_token(flask_client):
|
||||||
response = flask_client.post("/api/v1/login", json={
|
response = flask_client.post("/api/v1/login", json={
|
||||||
"username": "admin",
|
"email": "admin@admin.com",
|
||||||
"password": "password"
|
"password": "password"
|
||||||
})
|
})
|
||||||
assert response.json is not None
|
assert response.json is not None
|
||||||
|
|
Loading…
Reference in a new issue