diff options
author | Valery Piashchynski <[email protected]> | 2020-10-20 17:36:41 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-20 17:36:41 +0300 |
commit | de6a38c0f3e1f21349e6361b8fe2829a09cf02b8 (patch) | |
tree | fc99ba06106145c1b9d2279e0616795ed106588f /plugins/rpc | |
parent | 4a3a8a1b94ce7a1ff697aee6c4e8a34e3a736195 (diff) |
GolangCi warnings fix
Diffstat (limited to 'plugins/rpc')
-rw-r--r-- | plugins/rpc/config_test.go | 2 |
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) |