diff options
author | Valery Piashchynski <[email protected]> | 2020-12-20 18:28:08 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-20 18:28:08 +0300 |
commit | a10d20d20e910ed8fcfbc3bc690aaf17ee338ff3 (patch) | |
tree | 6f017d59c92a59308c00aa3c338ea32b96f2d13d /plugins/informer/tests/informer_test.go | |
parent | 0e02ec510acca9cd8691071850ba95a6cb91d78d (diff) | |
parent | 35ee3b921be6e4416ff26a610f2f95044ff80cbd (diff) |
Merge pull request #456 from spiral/reload/tests_stabilization
Reload/tests stabilization
Diffstat (limited to 'plugins/informer/tests/informer_test.go')
-rw-r--r-- | plugins/informer/tests/informer_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/informer/tests/informer_test.go b/plugins/informer/tests/informer_test.go index 193e84bb..dd06f1c4 100644 --- a/plugins/informer/tests/informer_test.go +++ b/plugins/informer/tests/informer_test.go @@ -10,7 +10,7 @@ import ( "time" "github.com/spiral/endure" - "github.com/spiral/goridge/v3" + goridgeRpc "github.com/spiral/goridge/v3/pkg/rpc" "github.com/spiral/roadrunner/v2" "github.com/spiral/roadrunner/v2/plugins/config" "github.com/spiral/roadrunner/v2/plugins/informer" @@ -84,7 +84,7 @@ func TestInformerInit(t *testing.T) { func informerRPCTest(t *testing.T) { conn, err := net.Dial("tcp", "127.0.0.1:6001") assert.NoError(t, err) - client := rpc.NewClientWithCodec(goridge.NewClientCodec(conn)) + client := rpc.NewClientWithCodec(goridgeRpc.NewClientCodec(conn)) // WorkerList contains list of workers. list := struct { // Workers is list of workers. |