Skip to content

Commit 1aad2f3

Browse files
phantomjinxtadayosi
authored andcommitted
(e2e): fixes missing functions in kamelet test
* Functions removed in alternative src file so no longer available. Reverts to original syntax.
1 parent 9deb619 commit 1aad2f3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

e2e/namespace/install/cli/kamelet_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ limitations under the License.
2323
package common
2424

2525
import (
26+
"fmt"
2627
"testing"
2728

2829
. "github.com/onsi/gomega"
@@ -33,8 +34,8 @@ import (
3334

3435
func TestKameletFromCustomRepository(t *testing.T) {
3536
WithNewTestNamespace(t, func(ns string) {
36-
operatorID := operatorID(ns)
37-
installWithID(ns)
37+
operatorID := fmt.Sprintf("camel-k-%s", ns)
38+
Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed())
3839

3940
kameletName := "timer-custom-source"
4041
removeKamelet(kameletName, ns)

0 commit comments

Comments
 (0)