diff options
author | Brent Baude <bbaude@redhat.com> | 2022-07-11 12:31:02 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2022-07-12 15:29:46 -0500 |
commit | 44508942178cc5c8450cc7640f62140e0af96024 (patch) | |
tree | cf3514897c16a6d8ecb207529b61220bebbff263 /pkg | |
parent | 72d13c56ce2784aa27ce2481e85de516672d0b5f (diff) | |
download | podman-44508942178cc5c8450cc7640f62140e0af96024.tar.gz podman-44508942178cc5c8450cc7640f62140e0af96024.tar.bz2 podman-44508942178cc5c8450cc7640f62140e0af96024.zip |
Fix last machine test
The list --format json test case had a typo like error.
[NO NEW TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
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 |