Remove pre-Europa tests

Signed-off-by: Joel Longtine <joel@dagger.io>
This commit is contained in:
Joel Longtine
2022-02-18 16:51:22 -07:00
parent 7e86b00962
commit 43a46128e0
511 changed files with 10 additions and 15691 deletions

View File

@@ -17,7 +17,7 @@ const (
)
func isUniverse(repoName string) bool {
return strings.HasPrefix(strings.ToLower(repoName), pkg.AlphaModule)
return strings.HasPrefix(strings.ToLower(repoName), pkg.UniverseModule)
}
// IsUniverseLatest check that current universe is up-to-date or no
@@ -32,7 +32,7 @@ func IsUniverseLatest(ctx context.Context, workspace string) (bool, error) {
return false, err
}
req, err := newRequire(pkg.AlphaModule, UniverseVersionConstraint)
req, err := newRequire(pkg.UniverseModule, UniverseVersionConstraint)
if err != nil {
return false, err
}