diff --git a/discogs_test.go b/discogs_test.go index b08d0d0..00a1624 100644 --- a/discogs_test.go +++ b/discogs_test.go @@ -9,23 +9,12 @@ const ( testToken = "" ) -func check(t *testing.T, e error) { - if e != nil { - t.Error(e) - } -} - -func assert(t *testing.T, condition bool, assertion string) { - if !condition { - t.Errorf("Assertion failed: %v", assertion) - } -} - func initDiscogsClient(t *testing.T, options *Options) *Client { if options == nil { options = &Options{ UserAgent: testUserAgent, Currency: "USD", + Token: testToken, } }