From 4d0c0c6b252fb6a73019162a686257f0866c9d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Fri, 23 Apr 2021 23:42:39 +0200 Subject: [PATCH] The docker container runtime doesn't show name It hides the docker.io and the "library" parts --- test/integration/functional_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 3eab64f84d..d63b545db1 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -232,7 +232,7 @@ func validateLoadImage(ctx context.Context, t *testing.T, profile string) { if err != nil { t.Fatalf("listing images: %v\n%s", err, rr.Output()) } - if !strings.Contains(rr.Output(), newImage) { + if !strings.Contains(rr.Output(), fmt.Sprintf("busybox:%s", profile)) { t.Fatalf("expected %s to be loaded into minikube but the image is not there", newImage) }