From 1a14419e39055c0e87c651339b7276938d68de98 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Mon, 19 Jan 2026 12:40:03 -0500 Subject: nws: fix `TestPoints` --- nws/nws_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nws/nws_test.go b/nws/nws_test.go index 7ddd97f..4ef31d0 100644 --- a/nws/nws_test.go +++ b/nws/nws_test.go @@ -20,19 +20,19 @@ func TestPoints(t *testing.T) { t.Errorf("points: %v", err) return } - if np.Properties.Forecast != "https://api.weather.gov/gridpoints/CLE/33,42/forecast" { + if np.Properties.Forecast != "https://api.weather.gov/gridpoints/CLE/34,43/forecast" { t.Errorf("points: forcecast link: '%v'", np.Properties.Forecast) } - if np.Properties.ForecastHourly != "https://api.weather.gov/gridpoints/CLE/33,42/forecast/hourly" { + if np.Properties.ForecastHourly != "https://api.weather.gov/gridpoints/CLE/34,43/forecast/hourly" { t.Errorf("points: forcecast link: '%v'", np.Properties.ForecastHourly) } if np.Properties.GridId != "CLE" { t.Errorf("points: gridid: %v", np.Properties.GridId) } - if np.Properties.GridX != 33 { + if np.Properties.GridX != 34 { t.Errorf("points: gridx: %v", np.Properties.GridX) } - if np.Properties.GridY != 42 { + if np.Properties.GridY != 43 { t.Errorf("points: gridy: %v", np.Properties.GridY) } -- cgit v1.2.3