diff options
Diffstat (limited to 'service/headers/config_test.go')
-rw-r--r-- | service/headers/config_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/service/headers/config_test.go b/service/headers/config_test.go index 6ea02f67..4b7c56df 100644 --- a/service/headers/config_test.go +++ b/service/headers/config_test.go @@ -1,15 +1,16 @@ package headers import ( + "testing" + json "github.com/json-iterator/go" "github.com/spiral/roadrunner/service" "github.com/stretchr/testify/assert" - "testing" ) type mockCfg struct{ cfg string } -func (cfg *mockCfg) Get(name string) service.Config { return nil } +func (cfg *mockCfg) Get(name string) service.Config { return nil } func (cfg *mockCfg) Unmarshal(out interface{}) error { j := json.ConfigCompatibleWithStandardLibrary return j.Unmarshal([]byte(cfg.cfg), out) |