diff options
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 { |