From c89871fd1ece24833d5ef01d2fc2b0a3df0837f2 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sun, 15 May 2022 22:40:46 -0400 Subject: nws: points -> Points --- nws/nws_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nws/nws_test.go') diff --git a/nws/nws_test.go b/nws/nws_test.go index 8c52c25..e53788d 100644 --- a/nws/nws_test.go +++ b/nws/nws_test.go @@ -7,7 +7,7 @@ import "testing" func TestPoints(t *testing.T) { // Test valid lat,lng. - np, err := points(41.115, -83.177) + np, err := Points(41.115, -83.177) if err != nil { t.Errorf("points: %v", err) } @@ -19,7 +19,7 @@ func TestPoints(t *testing.T) { } // Test invalid lat,lng - np, err = points(115.0, -83.177) + np, err = Points(115.0, -83.177) if err == nil { t.Errorf("points: %v", np) } -- cgit v1.2.3