From dbb64ec5f715ee62f9a4fcff86d263baa09890e5 Mon Sep 17 00:00:00 2001 From: Eric Pallad Date: Tue, 18 Jun 2024 09:18:11 +0200 Subject: [PATCH] updated test --- samples/weather-forecast/src/api/useWeather.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/weather-forecast/src/api/useWeather.test.tsx b/samples/weather-forecast/src/api/useWeather.test.tsx index 27fea1c..3fa4b36 100644 --- a/samples/weather-forecast/src/api/useWeather.test.tsx +++ b/samples/weather-forecast/src/api/useWeather.test.tsx @@ -38,7 +38,7 @@ setLogger({ }); describe("useWeather", () => { - const endpoint = "https://api.openweathermap.org/data/2.5/onecall"; + const endpoint = "https://api.openweathermap.org/data/3.0/onecall"; afterEach(() => { queryClient.clear(); });