diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-29 11:21:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 11:21:47 +0200 |
commit | 3e912f711b875b40709075e22be3f94e21e1639a (patch) | |
tree | 535357ded8c2482fabd8a9ccda5cdd70bb94867f /pkg/domain/entities/images.go | |
parent | 62a4befe040944c7c4883fed6a70f691aadb440c (diff) | |
parent | 8700c2fd03c29fb898f93e71618d91e2470236f6 (diff) | |
download | podman-3e912f711b875b40709075e22be3f94e21e1639a.tar.gz podman-3e912f711b875b40709075e22be3f94e21e1639a.tar.bz2 podman-3e912f711b875b40709075e22be3f94e21e1639a.zip |
Merge pull request #6022 from vrothberg/enable-inspect-tests
enable inspect tests
Diffstat (limited to 'pkg/domain/entities/images.go')
-rw-r--r-- | pkg/domain/entities/images.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 460965b34..707937a44 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -238,13 +238,9 @@ type ImagePruneReport struct { type ImageTagOptions struct{} type ImageUntagOptions struct{} -type ImageData struct { - *inspect.ImageData -} - +// ImageInspectReport is the data when inspecting an image. type ImageInspectReport struct { - Images []*ImageData - Errors map[string]error + *inspect.ImageData } type ImageLoadOptions struct { |