Skip to content

Commit

Permalink
Linter fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
User942blib committed Apr 10, 2020
1 parent 3f1aa2a commit fe74cb3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions tracker_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,7 @@ func TestGeneratePath(t *testing.T) {
// test API JSON responses
gt := tracker.GazelleTorrent{}
gt.Group.CatalogueNumber = "CATNUM Group"
gt.Group.MusicInfo.Artists = []tracker.Artist{
{1,
"Artist A",
},
{2,
"Artist B",
},
}
gt.Group.MusicInfo.Artists = []tracker.Artist{{ID: 1, Name: "Artist A"}, {ID: 2, Name: "Artist B"}}
gt.Group.Name = "RELEASE 1"
gt.Group.Year = 1987
gt.Group.RecordLabel = "LABEL 1 Group"
Expand Down

0 comments on commit fe74cb3

Please sign in to comment.