From ac71fa01c3b6289f5c7279db0b84141fd22e5f37 Mon Sep 17 00:00:00 2001 From: Alex Jia Date: Wed, 8 Feb 2023 10:05:27 +0800 Subject: [PATCH] Fix typos in comments Signed-off-by: Alex Jia --- test/e2e/healthcheck_run_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/healthcheck_run_test.go b/test/e2e/healthcheck_run_test.go index c1afe00de8..c2113a64a1 100644 --- a/test/e2e/healthcheck_run_test.go +++ b/test/e2e/healthcheck_run_test.go @@ -267,7 +267,7 @@ var _ = Describe("Podman healthcheck run", func() { inspect = podmanTest.InspectContainer("hc") Expect(inspect[0].State.Health).To(HaveField("Status", define.HealthCheckHealthy)) - // Test podman ps --filter heath is working (#11687) + // Test podman ps --filter health is working (#11687) ps := podmanTest.Podman([]string{"ps", "--filter", "health=healthy"}) ps.WaitWithDefaultTimeout() Expect(ps).Should(Exit(0)) @@ -366,7 +366,7 @@ HEALTHCHECK CMD ls -l / 2>&1`, ALPINE) inspect = podmanTest.InspectContainer(ctrName) Expect(inspect[0].State.Health).To(HaveField("Status", define.HealthCheckHealthy)) - // Test podman ps --filter heath is working (#11687) + // Test podman ps --filter health is working (#11687) ps := podmanTest.Podman([]string{"ps", "--filter", "health=healthy"}) ps.WaitWithDefaultTimeout() Expect(ps).Should(Exit(0))