This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 12a962e343535c870f20b1898c75d5aabdfb0e1e Author: nferraro <ni.ferr...@gmail.com> AuthorDate: Tue Jun 25 01:21:45 2019 +0200 fix #693: fix typo --- e2e/install_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/install_test.go b/e2e/install_test.go index 53cf830..4cb41f8 100644 --- a/e2e/install_test.go +++ b/e2e/install_test.go @@ -38,7 +38,7 @@ func TestBasicInstallation(t *testing.T) { func TestAlternativeImageInstallation(t *testing.T) { withNewTestNamespace(func(ns string) { RegisterTestingT(t) - Expect(kamel("install", "-n", ns, "--operatorPod-image", "x/y:latest").Execute()).Should(BeNil()) + Expect(kamel("install", "-n", ns, "--operator-image", "x/y:latest").Execute()).Should(BeNil()) Eventually(operatorImage(ns)).Should(Equal("x/y:latest")) }) }