Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
luccasmmg committed Jun 17, 2021
1 parent f363d8f commit bb31c90
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions backend/app/api/api_v1/routers/tests/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ def test_edit_project(client, test_user, test_project, test_researcher, user_tok
assert response.status_code == 200
new_project['id'] = test_project.id
new_project['owner_id'] = test_project.owner_id
new_project['coordinator_data'] = {
"cpf": test_researcher.cpf,
"name": test_researcher.name,
"id": test_researcher.id,
"owner_id": test_researcher.owner_id
}
new_project['members'] = []
assert response.json() == new_project

def test_delete_project(client, test_user, test_researcher, test_project, user_token_headers, test_db):
Expand Down

0 comments on commit bb31c90

Please sign in to comment.