From 69ef2a5d9a51e3b225ca2fa741a32ada3db6c0e7 Mon Sep 17 00:00:00 2001 From: irlndts Date: Mon, 12 Mar 2018 19:31:50 +0300 Subject: [PATCH] Release --- discogs_test.go | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) 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, } }