Skip to content

Commit

Permalink
fix: condition for mp-controller suite selection
Browse files Browse the repository at this point in the history
  • Loading branch information
psturc authored and stuartwdouglas committed Jun 3, 2024
1 parent c3377e0 commit 43a01f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magefiles/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ func setRequiredEnvVars() error {

if openshiftJobSpec.Refs.Repo != "e2e-tests" {

if strings.HasSuffix(jobName, "-service-e2e") || strings.Contains(jobName, "image-controller") {
if strings.HasSuffix(jobName, "-service-e2e") || strings.Contains(jobName, "controller-e2e") {
var envVarPrefix, imageTagSuffix, testSuiteLabel string
sp := strings.Split(os.Getenv("COMPONENT_IMAGE"), "@")

Expand Down

0 comments on commit 43a01f8

Please sign in to comment.