diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-26 16:12:38 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-27 12:16:39 -0500 |
commit | 8438fa4fec01142ad9f6943f6e0c429c64d951b7 (patch) | |
tree | 476706a57d94e383728e12486e3933c52baf8147 /pkg/bindings/test/system_test.go | |
parent | 89b4683cc4666f789ebc3d21453ef65e37775642 (diff) | |
download | podman-8438fa4fec01142ad9f6943f6e0c429c64d951b7.tar.gz podman-8438fa4fec01142ad9f6943f6e0c429c64d951b7.tar.bz2 podman-8438fa4fec01142ad9f6943f6e0c429c64d951b7.zip |
Add streaming ability to endpoint
Signed-off-by: Brent Baude <bbaude@redhat.com>
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() { |