diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-13 14:50:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 14:50:37 +0000 |
commit | d2c620e1c4e4b26c506418d68543a88d4c499a31 (patch) | |
tree | f0542e837602beeb3f8f366743e16b827d35bfb3 /pkg | |
parent | 4df6122aaa3bc858e9488d366a2c9c91b6671170 (diff) | |
parent | 44508942178cc5c8450cc7640f62140e0af96024 (diff) | |
download | podman-d2c620e1c4e4b26c506418d68543a88d4c499a31.tar.gz podman-d2c620e1c4e4b26c506418d68543a88d4c499a31.tar.bz2 podman-d2c620e1c4e4b26c506418d68543a88d4c499a31.zip |
Merge pull request #14895 from baude/machinewip
Fix machine test for list
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/machine/e2e/list_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/e2e/list_test.go b/pkg/machine/e2e/list_test.go index fb855c61e..8b7443d47 100644 --- a/pkg/machine/e2e/list_test.go +++ b/pkg/machine/e2e/list_test.go @@ -135,7 +135,7 @@ var _ = Describe("podman machine list", func() { Expect(listSession2).To(Exit(0)) var listResponse []*entities.ListReporter - err = jsoniter.Unmarshal(listSession.Bytes(), &listResponse) + err = jsoniter.Unmarshal(listSession2.Bytes(), &listResponse) Expect(err).To(BeNil()) // table format includes the header |