Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
uw0s committed Apr 15, 2024
1 parent c3dfb7f commit f8cf74a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ def test_submit_button() -> None:
"retain_descriptors": False,
"patient_pseudo_id_prefix": "OrgX - ",
}
response = client.post(self.app_url() + "/submit_button", json=test_options)
if response.status_code != status.HTTP_200_OK:
raise AssertionError
json_response = response.json()
response = client.post(app_url() + "/submit_button", json=test_options)
if response.status_code != status.HTTP_200_OK:
raise AssertionError
json_response = response.json()
desired_hash = "cd6e8eae4006ca7b150c3217667de6b6f7b435f93961d182e72b4da7773884a9"
hasher = hashlib.sha256()
block_size = 65536
Expand Down

0 comments on commit f8cf74a

Please sign in to comment.