remove test for aux driver without version more than 5 years old

pull/21576/head
Medya Ghazizadeh 2025-09-16 11:20:16 -07:00
parent 49d7ce4c2a
commit e473419fa9
2 changed files with 1 additions and 2 deletions

View File

@ -51,7 +51,6 @@ func TestKVMDriverInstallOrUpdate(t *testing.T) {
name string
path string
}{
{name: "driver-without-version-support", path: filepath.Join(*testdataDir, "kvm2-driver-without-version")},
{name: "driver-with-older-version", path: filepath.Join(*testdataDir, "kvm2-driver-older-version")},
}
@ -82,7 +81,7 @@ func TestKVMDriverInstallOrUpdate(t *testing.T) {
os.Setenv("PATH", fmt.Sprintf("%s:%s", path, originalPath))
// NOTE: This should be a real version, as it impacts the downloaded URL
newerVersion, err := semver.Make("1.3.0")
newerVersion, err := semver.Make("1.37.0")
if err != nil {
t.Fatalf("Expected new semver. test: %v, got: %v", tc.name, err)
}