diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-02-11 06:05:29 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-11 11:50:34 +0000 |
commit | 2e96acf3007cbd05a37a8af7156f0abda073cb5a (patch) | |
tree | eab653d95e0d9fe3deb44f12140782c84059eaa2 /cmd/podman/run_test.go | |
parent | d26266659d8649b36b91e8f8f78f8073007554ac (diff) | |
download | podman-2e96acf3007cbd05a37a8af7156f0abda073cb5a.tar.gz podman-2e96acf3007cbd05a37a8af7156f0abda073cb5a.tar.bz2 podman-2e96acf3007cbd05a37a8af7156f0abda073cb5a.zip |
Change json to match docker inspect
Changing these fields caused the output of podman inspect to more
closely match docker inspect.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #306
Approved by: mheon
Diffstat (limited to 'cmd/podman/run_test.go')
-rw-r--r-- | cmd/podman/run_test.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cmd/podman/run_test.go b/cmd/podman/run_test.go index 55c535337..344fdcce5 100644 --- a/cmd/podman/run_test.go +++ b/cmd/podman/run_test.go @@ -36,15 +36,15 @@ func generateAlpineImageData() *inspect.ImageData { } data := &inspect.ImageData{ - ID: "e21c333399e0aeedfd70e8827c9fba3f8e9b170ef8a48a29945eb7702bf6aa5f", - RepoTags: []string{"docker.io/library/alpine:latest"}, - RepoDigests: []string{"docker.io/library/alpine@sha256:5cb04fce748f576d7b72a37850641de8bd725365519673c643ef2d14819b42c6"}, - Comment: "Created:2017-12-01 18:48:48.949613376 +0000", - Author: "", - Architecture: "amd64", - Os: "linux", - Version: "17.06.2-ce", - Config: config, + ID: "e21c333399e0aeedfd70e8827c9fba3f8e9b170ef8a48a29945eb7702bf6aa5f", + RepoTags: []string{"docker.io/library/alpine:latest"}, + RepoDigests: []string{"docker.io/library/alpine@sha256:5cb04fce748f576d7b72a37850641de8bd725365519673c643ef2d14819b42c6"}, + Comment: "Created:2017-12-01 18:48:48.949613376 +0000", + Author: "", + Architecture: "amd64", + Os: "linux", + Version: "17.06.2-ce", + ContainerConfig: config, } return data } |