From 16e1cbc2457fc62cc432909b611eb734f48beeab Mon Sep 17 00:00:00 2001 From: Matthew Sykes Date: Mon, 4 Jan 2021 10:09:56 -0500 Subject: [PATCH] Update image filter used by integration tests Signed-off-by: Matthew Sykes --- integration/helpers/images.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/helpers/images.go b/integration/helpers/images.go index b559a9cd076..343f44ceda2 100644 --- a/integration/helpers/images.go +++ b/integration/helpers/images.go @@ -23,7 +23,7 @@ func AssertImagesExist(imageNames ...string) { for _, imageName := range imageNames { images, err := dockerClient.ListImages(docker.ListImagesOptions{ - Filter: imageName, + Filters: map[string][]string{"reference": {imageName}}, }) ExpectWithOffset(1, err).NotTo(HaveOccurred())