fix: integration tests

This commit is contained in:
2025-03-13 08:31:11 +01:00
parent e58a716fe1
commit 0a371ec360
4 changed files with 8 additions and 5 deletions

View File

@ -242,7 +242,7 @@ func validateDowngradeVersionArg(
) error {
parsedDeployedVersion, err := tagcmp.Parse(deployMeta.Version)
if err != nil {
return fmt.Errorf("'%s' is not a known version for %s", deployMeta.Version, app.Recipe.Name)
return fmt.Errorf("current deployment '%s' is not a known version for %s", deployMeta.Version, app.Recipe.Name)
}
parsedSpecificVersion, err := tagcmp.Parse(specificVersion)