This is an automated email from the ASF dual-hosted git repository. nferraro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 2d0916ce1532c521f6eed627fbef78b0c3b00c3e Author: nicolaferraro <[email protected]> AuthorDate: Fri Apr 9 16:24:24 2021 +0200 chore: fix test panic --- e2e/common/cli/dev_mode_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e/common/cli/dev_mode_test.go b/e2e/common/cli/dev_mode_test.go index fef9153..93cb052 100644 --- a/e2e/common/cli/dev_mode_test.go +++ b/e2e/common/cli/dev_mode_test.go @@ -38,6 +38,7 @@ func TestRunDevMode(t *testing.T) { Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) t.Run("run yaml dev mode", func(t *testing.T) { + RegisterTestingT(t) ctx, cancel := context.WithCancel(TestContext) defer cancel() piper, pipew := io.Pipe() @@ -65,6 +66,7 @@ func TestRunDevMode(t *testing.T) { }) t.Run("run yaml remote dev mode", func(t *testing.T) { + RegisterTestingT(t) ctx, cancel := context.WithCancel(TestContext) defer cancel() piper, pipew := io.Pipe()
