We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77e1b5b commit e27deabCopy full SHA for e27deab
src/webapp/routers/institutions_test.py
@@ -249,9 +249,9 @@ def test_read_inst_by_name_case_insensitive(client: TestClient) -> None:
249
for name_variant in test_cases:
250
response = client.get(f"/institutions/name/{name_variant}")
251
assert response.status_code == 200, f"Failed for variant: {name_variant}"
252
- assert response.json() == INSTITUTION_OBJ, (
253
- f"Response mismatch for variant: {name_variant}"
254
- )
+ assert (
+ response.json() == INSTITUTION_OBJ
+ ), f"Response mismatch for variant: {name_variant}"
255
256
257
def test_read_inst_by_name_case_insensitive_lowercase(
0 commit comments