summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/system_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-08 17:57:10 +0200
committerGitHub <noreply@github.com>2020-05-08 17:57:10 +0200
commit13db0f2b61b17e6f959fff832b40270352cd54da (patch)
treeab1c4ca5ea7926e0731136bb4e358c6d3407f8da /pkg/bindings/test/system_test.go
parent2547fe53127057ce8f3ba065b4263fea32be7f0d (diff)
parent20407a2f1fadb1488caac1560dfdd56facff4153 (diff)
downloadpodman-13db0f2b61b17e6f959fff832b40270352cd54da.tar.gz
podman-13db0f2b61b17e6f959fff832b40270352cd54da.tar.bz2
podman-13db0f2b61b17e6f959fff832b40270352cd54da.zip
Merge pull request #6118 from baude/v2bindingsenforce
set binding tests to required
Diffstat (limited to 'pkg/bindings/test/system_test.go')
-rw-r--r--pkg/bindings/test/system_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkg/bindings/test/system_test.go b/pkg/bindings/test/system_test.go
index 87e6d56dc..62ea32377 100644
--- a/pkg/bindings/test/system_test.go
+++ b/pkg/bindings/test/system_test.go
@@ -3,7 +3,6 @@ package test_bindings
import (
"time"
- "github.com/containers/libpod/pkg/api/handlers"
"github.com/containers/libpod/pkg/bindings"
"github.com/containers/libpod/pkg/bindings/containers"
"github.com/containers/libpod/pkg/bindings/pods"
@@ -39,8 +38,8 @@ var _ = Describe("Podman system", func() {
})
It("podman events", func() {
- eChan := make(chan handlers.Event, 1)
- var messages []handlers.Event
+ eChan := make(chan entities.Event, 1)
+ var messages []entities.Event
cancelChan := make(chan bool, 1)
go func() {
for e := range eChan {