diff options
author | Valery Piashchynski <[email protected]> | 2020-10-26 11:50:12 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-26 11:50:12 +0300 |
commit | 9aae9e2009bad07ebdee73e1c6cf56901d07880a (patch) | |
tree | 0ad9537bd438c63719fb83343ab77fc4ab34eb83 /plugins/factory/tests/plugin_1.go | |
parent | db7695463e85faf3fba6a2767b2dfa6ef916785d (diff) |
Fix linters warnings
Diffstat (limited to 'plugins/factory/tests/plugin_1.go')
-rwxr-xr-x | plugins/factory/tests/plugin_1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/factory/tests/plugin_1.go b/plugins/factory/tests/plugin_1.go index df632481..9011bb00 100755 --- a/plugins/factory/tests/plugin_1.go +++ b/plugins/factory/tests/plugin_1.go @@ -29,7 +29,7 @@ func (f *Foo) Serve() chan error { return errCh } - cmd, err := f.spawner.CommandFactory(nil) + cmd, err := f.spawner.NewCmdFactory(nil) if err != nil { errCh <- err return errCh |