Skip to content

Commit be3d522

Browse files
committed
Linting fix
1 parent 0508a4f commit be3d522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/routers/test_score_set.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,7 @@ def test_search_public_score_sets_invalid_limit(session, data_provider, client,
18731873
response_data = response.json()
18741874
assert response.status_code == 422
18751875
assert (
1876-
f"Cannot search for more than 100 score sets at a time. Please use the offset and limit parameters to run a paginated search."
1876+
"Cannot search for more than 100 score sets at a time. Please use the offset and limit parameters to run a paginated search."
18771877
in response_data["detail"]
18781878
)
18791879

@@ -1912,7 +1912,7 @@ def test_search_public_score_sets_too_many_publication_identifiers(
19121912
response_data = response.json()
19131913
assert response.status_code == 422
19141914
assert (
1915-
f"Cannot search for score sets belonging to more than 40 publication identifiers at once."
1915+
"Cannot search for score sets belonging to more than 40 publication identifiers at once."
19161916
in response_data["detail"]
19171917
)
19181918

0 commit comments

Comments
 (0)