From e174a8b5da0ab33a04ee6c95426d0061c7dafd69 Mon Sep 17 00:00:00 2001 From: Jakub Guzik Date: Wed, 31 Mar 2021 13:40:19 +0200 Subject: Fix bindings prune containers flaky test In #9863 prune containers filter params were narrowed to support only those required by http API. name filter in bindings was replaced by until filter, which is not a good match, as until filters are causing tests to be flaky. Signed-off-by: Jakub Guzik --- pkg/bindings/test/containers_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/bindings/test/containers_test.go b/pkg/bindings/test/containers_test.go index cb9e0721b..4f049d18b 100644 --- a/pkg/bindings/test/containers_test.go +++ b/pkg/bindings/test/containers_test.go @@ -568,15 +568,6 @@ var _ = Describe("Podman containers ", func() { Expect(err).To(BeNil()) Expect(len(reports.PruneReportsIds(pruneResponse))).To(Equal(0)) Expect(len(reports.PruneReportsErrs(pruneResponse))).To(Equal(0)) - - // Valid filter params container should be pruned now. - filters := map[string][]string{ - "until": {"0s"}, - } - pruneResponse, err = containers.Prune(bt.conn, new(containers.PruneOptions).WithFilters(filters)) - Expect(err).To(BeNil()) - Expect(len(reports.PruneReportsErrs(pruneResponse))).To(Equal(0)) - Expect(len(reports.PruneReportsIds(pruneResponse))).To(Equal(1)) }) It("podman prune running containers", func() { -- cgit v1.2.3-54-g00ecf