diff --git a/tests/test_weather_context.py b/tests/test_weather_context.py index a34923b0..aba0d948 100644 --- a/tests/test_weather_context.py +++ b/tests/test_weather_context.py @@ -651,8 +651,8 @@ async def test_open_meteo_future_enrichment_rejects_non_object_hourly_payload() ) air_quality, allergen = await provider._fetch_air_quality_and_allergen( - 39.9, - 116.3, + 1, + 2, forecast_date=pendulum.date(2026, 7, 15), ) @@ -682,8 +682,8 @@ async def test_open_meteo_current_enrichment_rejects_non_object_payload( with caplog.at_level("WARNING", logger="weather_briefing.weather_context"): air_quality, allergen = await provider._fetch_air_quality_and_allergen( - 39.9, - 116.3, + 1, + 2, forecast_date=None, )