diff options
author | Brent Baude <bbaude@redhat.com> | 2022-07-11 12:31:02 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2022-07-26 13:08:37 -0400 |
commit | f7707c81a0ff91364541f3be600a970fd1b59476 (patch) | |
tree | 485edf480e46ede0330ba720f4e8dfc451520317 | |
parent | 35dc17bfe619444471317d067325d6f92752dc8f (diff) | |
download | podman-f7707c81a0ff91364541f3be600a970fd1b59476.tar.gz podman-f7707c81a0ff91364541f3be600a970fd1b59476.tar.bz2 podman-f7707c81a0ff91364541f3be600a970fd1b59476.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>
-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 |