kubernetes/minikube
test: Remove duplicate kubernetes versions in tests
オープン
#21,483 opened on 2025/09/03
good first issuehelp wanted
Repository metrics
- Stars
- (31,799 個のスター)
- PR merge metrics
- (平均マージ 12d 19h) (30d で 43 merged PRs)
説明
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