mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
rpc/client: use standard errors package in tests
This commit is contained in:
parent
f0f676eb1c
commit
3bba853c3e
1 changed files with 1 additions and 2 deletions
|
@ -31,7 +31,6 @@ import (
|
|||
"github.com/nspcc-dev/neo-go/pkg/vm"
|
||||
"github.com/nspcc-dev/neo-go/pkg/vm/opcode"
|
||||
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
@ -296,7 +295,7 @@ var rpcClientTestCases = map[string][]rpcClientTestCase{
|
|||
result: func(c *Client) interface{} {
|
||||
member, err := keys.NewPublicKeyFromString("02103a7f7dd016558597f7960d27c516a4394fd968b9e65155eb4b013e4040406e")
|
||||
if err != nil {
|
||||
panic(errors.Wrap(err, "failed to decode public key"))
|
||||
panic(fmt.Errorf("failed to decode public key: %w", err))
|
||||
}
|
||||
return keys.PublicKeys{member}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue