remove assertion that did not work

This commit is contained in:
burnettk 2022-05-20 18:11:32 -04:00
parent aa9f252e4a
commit d4655e4ac4
1 changed files with 2 additions and 6 deletions

View File

@ -28,7 +28,7 @@ def test_user_can_be_created_and_deleted(client: FlaskClient) -> None:
{"task_identifier": "1", "answer": {"Was the order shipped?": "Y"}},
]
for task in tasks:
last_response = run_task(client, task, last_response)
run_task(client, task, last_response)
process_model = ProcessModel.query.filter().first()
if process_model is not None:
@ -38,15 +38,11 @@ def test_user_can_be_created_and_deleted(client: FlaskClient) -> None:
def run_task(
client: FlaskClient, request_body: dict, last_response: Union[None, str]
) -> Union[str, None]:
) -> None:
"""Run_task."""
response = client.post(
"/run_process",
content_type="application/json",
data=json.dumps(request_body),
)
current_response = response.data
if last_response is not None:
assert last_response != current_response
assert response.status_code == 200
return current_response