Skip to content

Commit

Permalink
DEBUG: print
Browse files Browse the repository at this point in the history
  • Loading branch information
matyasselmeci committed Jan 6, 2024
1 parent 39f2d99 commit 9c2c4a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,9 @@ def test_institution_default(self, client: flask.Flask):

def test_institution_ids(self, client: flask.Flask):
_ = global_data.get_mappings(strict=True)
institution_ids_list = client.get("/institution_ids").json
response = client.get("/institution_ids")
print(response)
institution_ids_list = response.json

assert len(institution_ids_list) > 20, "Unexpectedly few institutions: %d" % len(institution_ids_list)
names_list = [i["name"] for i in institution_ids_list]
Expand Down

0 comments on commit 9c2c4a2

Please sign in to comment.