From 133bbd376984f99660e8388cd0203cb2c89d23c8 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Thu, 5 Sep 2024 13:55:34 -0600 Subject: [PATCH] Fix CI Collision between new spellcheck CI hook and a parallel typo Signed-off-by: Ed Santiago --- test/e2e/build_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/build_test.go b/test/e2e/build_test.go index 38e29f7a74..234a2d6802 100644 --- a/test/e2e/build_test.go +++ b/test/e2e/build_test.go @@ -63,7 +63,7 @@ var _ = Describe("Podman build", func() { session = podmanTest.Podman([]string{"build", "-f", "build/buildkit-mount/Containerfilecacheread"}) session.WaitWithDefaultTimeout() if IsRemote() { - // In the case of podman remote the error from build is not being propogated to `stderr` instead it appears + // In the case of podman remote the error from build is not being propagated to `stderr` instead it appears // on the `stdout` this could be a potential bug in `remote build` which needs to be fixed and visited. Expect(session.OutputToString()).To(ContainSubstring(expectedErr)) Expect(session).Should(ExitWithError(1, "exit status 1"))