From deefac553297326e4d58a2fb4fb260d250c8c129 Mon Sep 17 00:00:00 2001 From: stirabos Date: Thu, 18 Jan 2024 11:14:03 +0100 Subject: [PATCH] [chore] Address a ginkgolinter warning Address a ginkgolinter warning introduced with https://github.com/kubevirt/kubevirt/pull/10993 since it's currently preventing a backport of it to a stabilization branch where ginkgolinter is enforcing. Signed-off-by: Simone Tiraboschi --- tests/guestlog/guestlog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/guestlog/guestlog.go b/tests/guestlog/guestlog.go index f2462afa1fc5..9fcc4a130a20 100644 --- a/tests/guestlog/guestlog.go +++ b/tests/guestlog/guestlog.go @@ -105,7 +105,7 @@ var _ = Describe("[sig-compute]Guest console log", decorators.SigCompute, func() foundContainer = true } } - Expect(foundContainer).To(Equal(true)) + Expect(foundContainer).To(BeTrue()) By("Triggering a shutdown from the guest OS") Expect(console.LoginToCirros(vmi)).To(Succeed())