Skip to content

Commit

Permalink
Fix node group tests
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Anarse <[email protected]>
  • Loading branch information
vishalanarase committed Jun 6, 2022
1 parent 2c75d82 commit d0b87c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cluster-autoscaler/cloudprovider/civo/civo_node_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestNodeGroup_IncreaseSize(t *testing.T) {
client.On("UpdateKubernetesClusterPool",
ng.clusterID,
ng.id,
&civogo.KubernetesClusterPoolConfig{
&civogo.KubernetesClusterPoolUpdateConfig{
Count: newCount,
},
).Return(
Expand Down Expand Up @@ -84,7 +84,7 @@ func TestNodeGroup_IncreaseSize(t *testing.T) {
client.On("UpdateKubernetesClusterPool",
ng.clusterID,
ng.id,
&civogo.KubernetesClusterPoolConfig{
&civogo.KubernetesClusterPoolUpdateConfig{
Count: newCount,
},
).Return(
Expand Down Expand Up @@ -153,7 +153,7 @@ func TestNodeGroup_DecreaseTargetSize(t *testing.T) {
client.On("UpdateKubernetesClusterPool",
ng.clusterID,
ng.id,
&civogo.KubernetesClusterPoolConfig{
&civogo.KubernetesClusterPoolUpdateConfig{
Count: newCount,
},
).Return(
Expand Down

0 comments on commit d0b87c1

Please sign in to comment.