From 401dcff8389e10c6fd88ad34f82daccb8f800d3f Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 17 Dec 2020 12:07:13 -0600 Subject: podman v3 container bindings convert the golang container bindings to all use options so that changes in the future are more managable. Signed-off-by: baude --- pkg/bindings/test/volumes_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg/bindings/test/volumes_test.go') diff --git a/pkg/bindings/test/volumes_test.go b/pkg/bindings/test/volumes_test.go index 0664a99e4..e0d854b66 100644 --- a/pkg/bindings/test/volumes_test.go +++ b/pkg/bindings/test/volumes_test.go @@ -102,8 +102,7 @@ var _ = Describe("Podman volumes", func() { Expect(code).To(BeNumerically("==", http.StatusConflict)) // Removing with a volume in use with force should work with a stopped container - zero := uint(0) - err = containers.Stop(connText, "vtest", &zero) + err = containers.Stop(connText, "vtest", new(containers.StopOptions).WithTimeout(0)) Expect(err).To(BeNil()) options := new(volumes.RemoveOptions).WithForce(true) err = volumes.Remove(connText, vol.Name, options) -- cgit v1.2.3-54-g00ecf