Skip to content

Commit

Permalink
fix: Contacts test
Browse files Browse the repository at this point in the history
  • Loading branch information
savely-krasovsky committed Jun 24, 2022
1 parent edc2465 commit e0157fd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
)

Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit e0157fd

Please sign in to comment.