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>
This commit is contained in:
Brent Baude
2022-07-11 12:31:02 -05:00
parent 72d13c56ce
commit 4450894217

View File

@ -135,7 +135,7 @@ var _ = Describe("podman machine list", func() {
Expect(listSession2).To(Exit(0)) Expect(listSession2).To(Exit(0))
var listResponse []*entities.ListReporter var listResponse []*entities.ListReporter
err = jsoniter.Unmarshal(listSession.Bytes(), &listResponse) err = jsoniter.Unmarshal(listSession2.Bytes(), &listResponse)
Expect(err).To(BeNil()) Expect(err).To(BeNil())
// table format includes the header // table format includes the header