From f7132c06fcc796297f2549ef05808f6392df27d2 Mon Sep 17 00:00:00 2001 From: froge Date: Fri, 14 Feb 2025 06:26:38 +1000 Subject: [PATCH] Fix route tests --- routes_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/routes_test.go b/routes_test.go index 3f87e77..08a1c09 100644 --- a/routes_test.go +++ b/routes_test.go @@ -36,13 +36,13 @@ func TestGetArtistByIDRoute(t *testing.T) { // Dynamic data is hard to test so here we validate JSON response // And we check known fields which are not likely to change // We then check that the DB was updated correctly just to be sure - var spotifyResp SpotifyResponse - err := json.NewDecoder(w.Body).Decode(&spotifyResp) + var resp ArtistProfile + err := json.NewDecoder(w.Body).Decode(&resp) if err != nil { assert.Fail(t, fmt.Sprintf("Could not validate and parse JSON response into SpotifyResponse struct: %s", err.Error())) } - assert.Equal(t, "0TnOYISbd1XYRBk9myaseg", spotifyResp.ID) - assert.Equal(t, "Pitbull", spotifyResp.Name) + assert.Equal(t, "0TnOYISbd1XYRBk9myaseg", resp.SpotifyID) + assert.Equal(t, "Pitbull", resp.Name) var artist ArtistProfile dbResult := env.db.Take(&artist)