summaryrefslogtreecommitdiff
path: root/plugins/rpc/config_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-10-20 17:36:41 +0300
committerValery Piashchynski <[email protected]>2020-10-20 17:36:41 +0300
commitde6a38c0f3e1f21349e6361b8fe2829a09cf02b8 (patch)
treefc99ba06106145c1b9d2279e0616795ed106588f /plugins/rpc/config_test.go
parent4a3a8a1b94ce7a1ff697aee6c4e8a34e3a736195 (diff)
GolangCi warnings fix
Diffstat (limited to 'plugins/rpc/config_test.go')
-rw-r--r--plugins/rpc/config_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/rpc/config_test.go b/plugins/rpc/config_test.go
index dcc24ec1..36927dd2 100644
--- a/plugins/rpc/config_test.go
+++ b/plugins/rpc/config_test.go
@@ -4,13 +4,11 @@ import (
"testing"
json "github.com/json-iterator/go"
- //"github.com/spiral/roadrunner/service"
"github.com/stretchr/testify/assert"
)
type testCfg struct{ cfg string }
-
func (cfg *testCfg) Unmarshal(out interface{}) error {
j := json.ConfigCompatibleWithStandardLibrary
return j.Unmarshal([]byte(cfg.cfg), out)