Skip to content

Commit

Permalink
(e2e): fixes missing functions in kamelet test
Browse files Browse the repository at this point in the history
* Functions removed in alternative src file so no longer available. Reverts
  to original syntax.
  • Loading branch information
phantomjinx authored and tadayosi committed Oct 14, 2022
1 parent 9deb619 commit 1aad2f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions e2e/namespace/install/cli/kamelet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ limitations under the License.
package common

import (
"fmt"
"testing"

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

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

kameletName := "timer-custom-source"
removeKamelet(kameletName, ns)
Expand Down

0 comments on commit 1aad2f3

Please sign in to comment.