summaryrefslogtreecommitdiff
path: root/plugins/server/tests/plugin_pipes.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/server/tests/plugin_pipes.go')
-rw-r--r--plugins/server/tests/plugin_pipes.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/server/tests/plugin_pipes.go b/plugins/server/tests/plugin_pipes.go
index f49cf6dc..9a7d3e3b 100644
--- a/plugins/server/tests/plugin_pipes.go
+++ b/plugins/server/tests/plugin_pipes.go
@@ -5,7 +5,7 @@ import (
"time"
"github.com/spiral/errors"
- config2 "github.com/spiral/roadrunner/v2/interfaces/config"
+ "github.com/spiral/roadrunner/v2/interfaces/config"
"github.com/spiral/roadrunner/v2/interfaces/pool"
"github.com/spiral/roadrunner/v2/interfaces/server"
"github.com/spiral/roadrunner/v2/pkg/payload"
@@ -32,12 +32,12 @@ var testPoolConfig = poolImpl.Config{
}
type Foo struct {
- configProvider config2.Configurer
+ configProvider config.Configurer
wf server.Server
pool pool.Pool
}
-func (f *Foo) Init(p config2.Configurer, workerFactory server.Server) error {
+func (f *Foo) Init(p config.Configurer, workerFactory server.Server) error {
f.configProvider = p
f.wf = workerFactory
return nil