mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 23:42:23 +00:00
14 lines
275 B
Go
14 lines
275 B
Go
|
package actor_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient"
|
||
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient/actor"
|
||
|
)
|
||
|
|
||
|
func TestRPCActorRPCClientCompat(t *testing.T) {
|
||
|
_ = actor.RPCActor(&rpcclient.WSClient{})
|
||
|
_ = actor.RPCActor(&rpcclient.Client{})
|
||
|
}
|