summaryrefslogtreecommitdiff
path: root/tests/plugins/informer
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/informer')
-rw-r--r--tests/plugins/informer/test_plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/informer/test_plugin.go b/tests/plugins/informer/test_plugin.go
index 2e5af988..7436a7fb 100644
--- a/tests/plugins/informer/test_plugin.go
+++ b/tests/plugins/informer/test_plugin.go
@@ -58,7 +58,7 @@ func (p1 *Plugin1) Workers() []worker.BaseProcess {
workers := p.Workers()
baseWorkers := make([]worker.BaseProcess, 0, len(workers))
for i := 0; i < len(workers); i++ {
- baseWorkers = append(baseWorkers, worker.FromSync(workers[i]))
+ baseWorkers = append(baseWorkers, worker.FromSync(workers[i].(*worker.SyncWorkerImpl)))
}
return baseWorkers