From 9de203ff49140f0a7ce7744ec839ec4f37a87006 Mon Sep 17 00:00:00 2001 From: Markus Walker Date: Thu, 21 Mar 2024 10:57:12 -0700 Subject: [PATCH] Update hosted clusters nodescaling test case names --- .../v2/validation/nodescaling/scaling_node_driver_aks_test.go | 4 ++-- .../v2/validation/nodescaling/scaling_node_driver_eks_test.go | 4 ++-- .../v2/validation/nodescaling/scaling_node_driver_gke_test.go | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/v2/validation/nodescaling/scaling_node_driver_aks_test.go b/tests/v2/validation/nodescaling/scaling_node_driver_aks_test.go index 1eda2639fbd..2811e0cd157 100644 --- a/tests/v2/validation/nodescaling/scaling_node_driver_aks_test.go +++ b/tests/v2/validation/nodescaling/scaling_node_driver_aks_test.go @@ -53,8 +53,8 @@ func (s *AKSNodeScalingTestSuite) TestScalingAKSNodePools() { aksNodes aks.NodePool client *rancher.Client }{ - {"Scaling agentpool by 1", scaleOneNode, s.client}, - {"Scaling agentpool by 2", scaleTwoNodes, s.client}, + {"Scaling AKS agentpool by 1", scaleOneNode, s.client}, + {"Scaling AKS agentpool by 2", scaleTwoNodes, s.client}, } for _, tt := range tests { diff --git a/tests/v2/validation/nodescaling/scaling_node_driver_eks_test.go b/tests/v2/validation/nodescaling/scaling_node_driver_eks_test.go index 30fcf0b5690..99804b43b21 100644 --- a/tests/v2/validation/nodescaling/scaling_node_driver_eks_test.go +++ b/tests/v2/validation/nodescaling/scaling_node_driver_eks_test.go @@ -53,8 +53,8 @@ func (s *EKSNodeScalingTestSuite) TestScalingEKSNodePools() { eksNodes eks.NodeGroupConfig client *rancher.Client }{ - {"Scaling node group by 1", scaleOneNode, s.client}, - {"Scaling node group by 2", scaleTwoNodes, s.client}, + {"Scaling EKS node group by 1", scaleOneNode, s.client}, + {"Scaling EKS node group by 2", scaleTwoNodes, s.client}, } for _, tt := range tests { diff --git a/tests/v2/validation/nodescaling/scaling_node_driver_gke_test.go b/tests/v2/validation/nodescaling/scaling_node_driver_gke_test.go index 22987f2bc85..821c2d851f2 100644 --- a/tests/v2/validation/nodescaling/scaling_node_driver_gke_test.go +++ b/tests/v2/validation/nodescaling/scaling_node_driver_gke_test.go @@ -53,8 +53,8 @@ func (s *GKENodeScalingTestSuite) TestScalingGKENodePools() { gkeNodes gke.NodePool client *rancher.Client }{ - {"Scaling node group by 1", scaleOneNode, s.client}, - {"Scaling node group by 2", scaleTwoNodes, s.client}, + {"Scaling GKE node group by 1", scaleOneNode, s.client}, + {"Scaling GKE node group by 2", scaleTwoNodes, s.client}, } for _, tt := range tests {