Merge branch 'ada/20241129-normalizeversion-test'

This commit is contained in:
rcourtman 2025-11-29 16:32:33 +00:00
commit affe0d2c47

View file

@ -396,3 +396,12 @@ func TestSymlinkResolution(t *testing.T) {
}
os.Remove(newPath)
}
func TestNormalizeVersion(t *testing.T) {
if got := normalizeVersion("v4.33.1"); got != "4.33.1" {
t.Errorf("normalizeVersion(%q) = %q, want %q", "v4.33.1", got, "4.33.1")
}
if got := normalizeVersion("4.33.1"); got != "4.33.1" {
t.Errorf("normalizeVersion(%q) = %q, want %q", "4.33.1", got, "4.33.1")
}
}