Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update E2E test data to fix operator-developer-e2e #488

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions test/operator-framework-e2e/operator_framework_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ var _ = Describe("Operator Framework E2E for plain+v0 bundles", func() {
baseFolderPath: "../../testdata/bundles/plain-v0",
bundles: []BundleContent{
{
bundleVersion: "0.1.0",
bundleVersion: "1.1.0",
},
{
bundleVersion: "0.2.0",
bundleVersion: "1.2.0",
},
},
}
Expand All @@ -146,8 +146,8 @@ var _ = Describe("Operator Framework E2E for plain+v0 bundles", func() {
desiredChannelName: "beta",
}
operatorAction = &OperatorActionInfo{
installVersion: "0.1.0",
upgradeVersion: "0.2.0",
installVersion: "1.1.0",
upgradeVersion: "1.2.0",
}
for i, b := range bundleInfo.bundles {
bundleInfo.bundles[i].bInputDir = catalogDInfo.operatorName + ".v" + b.bundleVersion
Expand Down Expand Up @@ -267,10 +267,10 @@ var _ = Describe("Operator Framework E2E for registry+v1 bundles", func() {
baseFolderPath: "../../testdata/bundles/registry-v1",
bundles: []BundleContent{
{
bundleVersion: "0.1.0",
bundleVersion: "1.1.0",
},
{
bundleVersion: "0.2.0",
bundleVersion: "1.2.0",
},
},
}
Expand All @@ -280,8 +280,8 @@ var _ = Describe("Operator Framework E2E for registry+v1 bundles", func() {
operatorName: "registry-operator",
}
operatorAction = &OperatorActionInfo{
installVersion: "0.1.0",
upgradeVersion: "0.2.0",
installVersion: "1.1.0",
upgradeVersion: "1.2.0",
}
for i, b := range bundleInfo.bundles {
bundleInfo.bundles[i].bInputDir = sdkInfo.projectName + ".v" + b.bundleVersion
Expand Down