summaryrefslogtreecommitdiff
path: root/service/container_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2019-11-17 15:32:26 +0300
committerValery Piashchynski <[email protected]>2019-11-17 15:32:26 +0300
commit492faef8e51fce243216758baa8c16b4173603df (patch)
treeda6376fba9a9af3358017dcbd5034677192f407b /service/container_test.go
parentb81f2b121eb3a49372662d0bc9c19c53366f33fc (diff)
complete half
Diffstat (limited to 'service/container_test.go')
-rw-r--r--service/container_test.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/service/container_test.go b/service/container_test.go
index 8fcaede2..33ad9491 100644
--- a/service/container_test.go
+++ b/service/container_test.go
@@ -67,7 +67,10 @@ type testCfg struct{ cfg string }
func (cfg *testCfg) Get(name string) Config {
vars := make(map[string]interface{})
- json.Unmarshal([]byte(cfg.cfg), &vars)
+ err := json.Unmarshal([]byte(cfg.cfg), &vars)
+ if err != nil {
+ panic("error unmarshalling the cfg.cfg value")
+ }
v, ok := vars[name]
if !ok {
@@ -435,9 +438,7 @@ func TestContainer_NoInit(t *testing.T) {
assert.NoError(t, c.Init(&testCfg{`{"test":"something", "test2":"something-else"}`}))
}
-type testInitD struct {
- c *testInitC
-}
+type testInitD struct {}
type DCfg struct {
V string