diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-27 15:07:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 15:07:32 -0400 |
commit | c64abd0b037e5918d6d24e326005ae65131dd738 (patch) | |
tree | 81a3647c98522436b35a1520d44cc2f64d707775 /pkg/bindings/test/system_test.go | |
parent | ab3a620f74f2f1458054822f2113200863b60d40 (diff) | |
parent | 8438fa4fec01142ad9f6943f6e0c429c64d951b7 (diff) | |
download | podman-c64abd0b037e5918d6d24e326005ae65131dd738.tar.gz podman-c64abd0b037e5918d6d24e326005ae65131dd738.tar.bz2 podman-c64abd0b037e5918d6d24e326005ae65131dd738.zip |
Merge pull request #6407 from baude/v2eventsstream
Add streaming ability to endpoint
Diffstat (limited to 'pkg/bindings/test/system_test.go')
-rw-r--r-- | pkg/bindings/test/system_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/bindings/test/system_test.go b/pkg/bindings/test/system_test.go index 27ab2f555..dd3778754 100644 --- a/pkg/bindings/test/system_test.go +++ b/pkg/bindings/test/system_test.go @@ -47,13 +47,13 @@ var _ = Describe("Podman system", func() { } }() go func() { - system.Events(bt.conn, eChan, cancelChan, nil, nil, nil) + system.Events(bt.conn, eChan, cancelChan, nil, nil, nil, bindings.PFalse) }() _, err := bt.RunTopContainer(nil, nil, nil) Expect(err).To(BeNil()) cancelChan <- true - Expect(len(messages)).To(BeNumerically("==", 3)) + Expect(len(messages)).To(BeNumerically("==", 5)) }) It("podman system prune - pod,container stopped", func() { |