diff options
author | Valery Piashchynski <[email protected]> | 2020-10-19 14:01:59 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-19 14:01:59 +0300 |
commit | 77670fb7af0c892c9b3a589fd424534fad288e7a (patch) | |
tree | 3adcaa85db664a355abe2b28f1d7e4a3fc45689f /plugins/factory/tests | |
parent | 16fbf3104c3c34bd9355593052b686acd26a8efe (diff) |
Update according activity worker
Diffstat (limited to 'plugins/factory/tests')
-rw-r--r-- | plugins/factory/tests/factory_test.go | 1 | ||||
-rw-r--r-- | plugins/factory/tests/plugin_1.go | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/factory/tests/factory_test.go b/plugins/factory/tests/factory_test.go index 38e939e1..72e28f84 100644 --- a/plugins/factory/tests/factory_test.go +++ b/plugins/factory/tests/factory_test.go @@ -46,7 +46,6 @@ func TestFactory(t *testing.T) { t.Fatal(err) } - err = container.Init() if err != nil { t.Fatal(err) diff --git a/plugins/factory/tests/plugin_1.go b/plugins/factory/tests/plugin_1.go index 0c44a0d1..5ab6df73 100644 --- a/plugins/factory/tests/plugin_1.go +++ b/plugins/factory/tests/plugin_1.go @@ -9,8 +9,8 @@ import ( ) type Foo struct { - configProvider config.Provider - spawner factory.Spawner + configProvider config.Provider + spawner factory.Spawner } func (f *Foo) Init(p config.Provider, spw factory.Spawner) error { |