diff options
author | Wolfy-J <[email protected]> | 2018-06-13 14:11:12 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-13 14:11:12 +0300 |
commit | 420370b8be039e5d314de6217ab10c46dc64e78a (patch) | |
tree | a038a0a7297665a2faa7f5c53b8053700ccbb25b /service/container_test.go | |
parent | 7d77b05901f4b34025a307de2ac4a83ae3162452 (diff) |
fix service
Diffstat (limited to 'service/container_test.go')
-rw-r--r-- | service/container_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/container_test.go b/service/container_test.go index 5adc5d73..58dd9dde 100644 --- a/service/container_test.go +++ b/service/container_test.go @@ -22,7 +22,7 @@ type testService struct { done chan interface{} } -func (t *testService) Configure(cfg Config, c Container) (enabled bool, err error) { +func (t *testService) Init(cfg Config, c Container) (enabled bool, err error) { t.cfg = cfg t.c = c t.done = make(chan interface{}) |