kubernetes/minikube

test: Remove duplicate kubernetes versions in tests

Open

#21.483 geöffnet am 3. Sept. 2025

Auf GitHub ansehen
 (10 Kommentare) (0 Reaktionen) (3 zugewiesene Personen)Go (31.799 Stars) (5.222 Forks)batch import
good first issuehelp wanted

Beschreibung

Some tests use multiple kubernetes versions:

	versions := []string{
		constants.OldestKubernetesVersion,
		constants.DefaultKubernetesVersion,
		constants.NewestKubernetesVersion,
	}

Currently DefaultKubernetesVersion and constants.NewestKubernetesVersion are the same ("1.34.0") so we run the same test twice.

Fix:

  • remove duplicate versions in the list

Contributor Guide