Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chacha912 committed Aug 18, 2023
1 parent d7a743b commit 76402cb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ func TestClient(t *testing.T) {

t.Run("x-shard-key test", func(t *testing.T) {
dummyID := types.ID("000000000000000000000000")
dummyActorID, err := dummyID.Bytes()
assert.NoError(t, err)

testServer, addr := dialTestYorkieServer(t)
defer testServer.Stop()
Expand All @@ -113,7 +111,7 @@ func TestClient(t *testing.T) {
assert.Equal(t, "dummy-api-key", data[types.ShardKey][0])

return &api.ActivateClientResponse{
ClientId: dummyActorID,
ClientId: dummyID.String(),
}, nil
},
)
Expand Down

0 comments on commit 76402cb

Please sign in to comment.