diff options
author | Wolfy-J <[email protected]> | 2019-12-23 15:02:43 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-12-23 15:02:43 +0300 |
commit | 7f2909ffb746880a380dbc8b9d7f4257a5abca6c (patch) | |
tree | 38e0967b9157182a6613f204803d17d81d59b9cc /service | |
parent | b3b29740ef6306ce1d649e3357c0e689997e1f9f (diff) |
- merging error handling improvements
Diffstat (limited to 'service')
-rw-r--r-- | service/container_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/service/container_test.go b/service/container_test.go index 5350de41..ad4c1e64 100644 --- a/service/container_test.go +++ b/service/container_test.go @@ -456,7 +456,9 @@ func TestContainer_NoInit(t *testing.T) { assert.NoError(t, c.Init(&testCfg{`{"test":"something", "test2":"something-else"}`})) } -type testInitD struct {} +type testInitD struct { + c *testInitC +} type DCfg struct { V string |