From 5620190b53746356c4071a1a768cf4c062d0f698 Mon Sep 17 00:00:00 2001 From: Austin Date: Wed, 30 Oct 2019 16:52:15 -0700 Subject: [PATCH] fix variable name capitalization --- links_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/links_test.go b/links_test.go index 7498de4..2c7753d 100644 --- a/links_test.go +++ b/links_test.go @@ -32,7 +32,7 @@ var ( } } }`) - projectslastPageLinksJSONBlob = []byte(`{ + projectsLastPageLinksJSONBlob = []byte(`{ "links": { "pages": { "first": "https://api.digitalocean.com/v2/projects?page=1", @@ -104,7 +104,7 @@ func TestLinks_ParseLast(t *testing.T) { } func TestLinks_ParseProjectsLast(t *testing.T) { - links := loadLinksJSON(t, projectslastPageLinksJSONBlob) + links := loadLinksJSON(t, projectsLastPageLinksJSONBlob) _, err := links.CurrentPage() if err != nil { t.Fatal(err)