The docker container runtime doesn't show name

It hides the docker.io and the "library" parts
pull/11164/head
Anders F Björklund 2021-04-23 23:42:39 +02:00
parent 96e199c442
commit 4d0c0c6b25
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}