Skip to content

Commit b8b2b06

Browse files
committed
Remove extraneous f prefix
1 parent ae9f2ff commit b8b2b06

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
@@ -2105,8 +2105,8 @@ def test_upload_a_non_utf8_file(session, client, setup_router_db, data_files):
21052105
)
21062106
assert response.status_code == 400
21072107
response_data = response.json()
2108-
assert f"Error decoding file: 'utf-8' codec can't decode byte 0xdd in position 10: invalid continuation byte. " \
2109-
f"Ensure the file has correct values." in response_data["detail"]
2108+
assert "Error decoding file: 'utf-8' codec can't decode byte 0xdd in position 10: invalid continuation byte. " \
2109+
"Ensure the file has correct values." in response_data["detail"]
21102110

21112111

21122112
########################################################################################################################

0 commit comments

Comments
 (0)