(tc *testutils.TestContext, version string, isBundle bool)
| 197 | } |
| 198 | |
| 199 | func csvPath(tc *testutils.TestContext, version string, isBundle bool) string { |
| 200 | fileName := fmt.Sprintf("%s.clusterserviceversion.yaml", tc.ProjectName) |
| 201 | if isBundle { |
| 202 | return filepath.Join(tc.Dir, "bundle", bundle.ManifestsDir, fileName) |
| 203 | } |
| 204 | return filepath.Join(tc.Dir, "packagemanifests", version, fileName) |
| 205 | } |