From 44508942178cc5c8450cc7640f62140e0af96024 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Mon, 11 Jul 2022 12:31:02 -0500 Subject: Fix last machine test The list --format json test case had a typo like error. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude --- pkg/machine/e2e/list_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg') 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 -- cgit v1.2.3-54-g00ecf