summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-26 10:16:14 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-27 10:20:53 -0500
commit6db081fc5e38df6e757da0af8e4e3c74eaa720f6 (patch)
treeb1912f555c5a5abc32dbfdd64757e4ce5e4993f2 /pkg/domain/entities
parentfdf64f0c66be4569732b830ce60c98f98a7efe64 (diff)
downloadpodman-6db081fc5e38df6e757da0af8e4e3c74eaa720f6.tar.gz
podman-6db081fc5e38df6e757da0af8e4e3c74eaa720f6.tar.bz2
podman-6db081fc5e38df6e757da0af8e4e3c74eaa720f6.zip
enable load integration tests
fix bug where multiple images can be loaded and have to be able to handle the return of multiple names Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go
index 773cd90b4..460965b34 100644
--- a/pkg/domain/entities/images.go
+++ b/pkg/domain/entities/images.go
@@ -256,7 +256,7 @@ type ImageLoadOptions struct {
}
type ImageLoadReport struct {
- Name string
+ Names []string
}
type ImageImportOptions struct {