Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bermuell committed Dec 1, 2023
1 parent ac352d4 commit c276d6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ func executeTests(tests []testStepsWithConfig) (err error) {
wg.Add(1)
go func(run testStepsWithConfig) {
defer wg.Done()
run.testRun.Run(run.steps, *localSdkPath, *useGaia, *gaiaTag, *useConsumerVersion, *useProviderVersion)
run.testRun.Run(run.steps, *localSdkPath, *useGaia, *gaiaTag, *useConsumerVersion, *useProviderVersion, *transformGenesis)
}(testCase)
} else {
log.Printf("=============== running %s ===============\n", testCase.testRun.name)
testCase.testRun.Run(testCase.steps, *localSdkPath, *useGaia, *gaiaTag, *useConsumerVersion, *useProviderVersion)
testCase.testRun.Run(testCase.steps, *localSdkPath, *useGaia, *gaiaTag, *useConsumerVersion, *useProviderVersion, *transformGenesis)
}
}

Expand Down Expand Up @@ -286,7 +286,7 @@ func main() {
if err := parseArguments(); err != nil {
flag.Usage()
log.Fatalf("Error parsing command arguments %s\n", err)
}
}

if *useConsumerVersion != "" && *useProviderVersion != "" {
log.Fatalf("consumer-version & provider-version specified! Note: for compatibility tests current checked out version can only be tested against a different provider or consumer version")
Expand Down

0 comments on commit c276d6a

Please sign in to comment.