diff --git a/api_test.go b/api_test.go index 20b4ffe..3f7be00 100644 --- a/api_test.go +++ b/api_test.go @@ -7,9 +7,6 @@ import ( "encoding/hex" "encoding/json" "errors" - "github.com/go-chi/chi/v5" - "github.com/stretchr/testify/require" - "go.uber.org/zap" "io" "io/fs" "log" @@ -25,6 +22,10 @@ import ( "time" "unsafe" + "github.com/go-chi/chi/v5" + "github.com/stretchr/testify/require" + "go.uber.org/zap" + "github.com/stretchr/testify/assert" ) @@ -602,7 +603,7 @@ func TestClient_Catalog(t *testing.T) { } func TestClient_Contacts(t *testing.T) { - contacts, err := cl.Contacts() + contacts, err := cl.Contacts(true) require.NoError(t, err) assert.NotNil(t, contacts) }