diff options
| -rw-r--r-- | nws/nws_test.go | 8 |
1 files 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) } |
