We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd57a7 commit e01f8c1Copy full SHA for e01f8c1
services/api-server/tests/unit/api_solvers/test_api_routers_solvers_jobs.py
@@ -191,9 +191,9 @@ async def test_solver_logs(
191
# was a re-direction
192
resp0 = resp.history[0]
193
assert resp0.status_code == status.HTTP_307_TEMPORARY_REDIRECT
194
- assert resp0.headers["location"] == presigned_download_link
+ assert resp0.headers["location"] == f"{presigned_download_link}"
195
196
- assert resp.url == presigned_download_link
+ assert f"{resp.url}" == f"{presigned_download_link}"
197
pprint(dict(resp.headers)) # noqa: T203
198
199
0 commit comments