diff options
author | Sujil02 <sushah@redhat.com> | 2020-04-26 16:23:42 -0400 |
---|---|---|
committer | Sujil02 <sushah@redhat.com> | 2020-04-26 16:38:52 -0400 |
commit | c1766d5e6496d48d357907598a44e147642a877e (patch) | |
tree | 150eb4f0eb9e06a41ae265e29646a733c92b9f2b /test/e2e/common_test.go | |
parent | 13c1d2c6af211ade30eeb01d02af7fbf94f2582d (diff) | |
download | podman-c1766d5e6496d48d357907598a44e147642a877e.tar.gz podman-c1766d5e6496d48d357907598a44e147642a877e.tar.bz2 podman-c1766d5e6496d48d357907598a44e147642a877e.zip |
Enable pod inspect integration test
Enable pod inspect integration test
Get rid of libpod pod inspect references
Remove libpod PodInspect struct.
Signed-off-by: Sujil02 <sushah@redhat.com>
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index d93ee8d3a..160af1bd5 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -14,7 +14,6 @@ import ( "testing" "time" - "github.com/containers/libpod/libpod" "github.com/containers/libpod/libpod/define" "github.com/containers/libpod/pkg/inspect" "github.com/containers/libpod/pkg/rootless" @@ -501,8 +500,8 @@ func (s *PodmanSessionIntegration) InspectContainerToJSON() []define.InspectCont } // InspectPodToJSON takes the sessions output from a pod inspect and returns json -func (s *PodmanSessionIntegration) InspectPodToJSON() libpod.PodInspect { - var i libpod.PodInspect +func (s *PodmanSessionIntegration) InspectPodToJSON() define.InspectPodData { + var i define.InspectPodData err := json.Unmarshal(s.Out.Contents(), &i) Expect(err).To(BeNil()) return i |