diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-17 11:01:45 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-17 13:22:06 -0500 |
commit | 44a8cf867665927111fe9ea03711c8fabfc7d4a2 (patch) | |
tree | cac0714b1d0e4ae4636c03191f4752235dd1a38d /pkg/api/handlers/libpod | |
parent | d68b028c9440cd3f952327b05f1bc8dee00ab98a (diff) | |
download | podman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.tar.gz podman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.tar.bz2 podman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.zip |
Fixes for system tests
Various fixes to protect against regressions in system tests
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod')
-rw-r--r-- | pkg/api/handlers/libpod/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go index a42d06205..284b33637 100644 --- a/pkg/api/handlers/libpod/images.go +++ b/pkg/api/handlers/libpod/images.go @@ -111,7 +111,7 @@ func GetImages(w http.ResponseWriter, r *http.Request) { return } // libpod has additional fields that we need to populate. - is.Created = img.Created().Unix() + is.Created = img.Created() is.ReadOnly = img.IsReadOnly() summaries[j] = is } |