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 22b833d commit 8e2fbf4Copy full SHA for 8e2fbf4
tests/integration/test_yearly_reading_goals.py
@@ -348,7 +348,9 @@ def test_compare_fastapi_and_webpy_responses(session):
348
r_fastapi = session_fastapi.get(
349
f"{BASE_URL_FASTAPI}/reading-goal.json?year={test_year_fastapi}"
350
)
351
- r_webpy = session_webpy.get(f"{BASE_URL_WEBPY}/reading-goal.json?year={test_year_webpy}")
+ r_webpy = session_webpy.get(
352
+ f"{BASE_URL_WEBPY}/reading-goal.json?year={test_year_webpy}"
353
+ )
354
355
assert r_fastapi.status_code == r_webpy.status_code == 200
356
data_fastapi = r_fastapi.json()
0 commit comments