mirror of
https://github.com/containers/podman.git
synced 2025-07-17 17:43:23 +08:00
Switch all referencs to image.ContainerConfig to image.Config
This will more closely match what Docker is doing. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -128,7 +128,7 @@ var _ = Describe("Podman commit", func() {
|
||||
inspect.WaitWithDefaultTimeout()
|
||||
Expect(inspect.ExitCode()).To(Equal(0))
|
||||
image := inspect.InspectImageJSON()
|
||||
_, ok := image[0].ContainerConfig.Volumes["/tmp"]
|
||||
_, ok := image[0].Config.Volumes["/tmp"]
|
||||
Expect(ok).To(BeTrue())
|
||||
|
||||
r := podmanTest.Podman([]string{"run", "newimage"})
|
||||
|
Reference in New Issue
Block a user