Skip to content

Commit f3dc2aa

Browse files
authored
chore(CI): fix autoscaling test (#2035)
1 parent 3ebf04a commit f3dc2aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/beta_cluster/beta_cluster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func TestBetaCluster(t *testing.T) {
7575
switch npName {
7676
case "default-pool":
7777
assert.False(np.Get("initialNodeCount").Exists(), "has no initial node count")
78-
assert.False(np.Get("autoscaling").Exists(), "does not have autoscaling enabled")
78+
assert.False(np.Get("autoscaling.enabled").Exists(), "does not have autoscaling enabled")
7979
case "default-node-pool":
8080
assert.JSONEq(gNp.Get("config").String(), np.Get("config").String())
8181
assert.JSONEq(gNp.Get("autoscaling").String(), np.Get("autoscaling").String())

test/integration/private_zonal_with_networking/private_zonal_with_networking_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func TestPrivateZonalWithNetworking(t *testing.T) {
7676
switch npName {
7777
case "default-pool":
7878
assert.False(np.Get("initialNodeCount").Exists(), "has no initial node count")
79-
assert.False(np.Get("autoscaling").Exists(), "does not have autoscaling enabled")
79+
assert.False(np.Get("autoscaling.enabled").Exists(), "does not have autoscaling enabled")
8080
case "default-node-pool":
8181
assert.JSONEq(gNp.Get("config").String(), np.Get("config").String())
8282
}

0 commit comments

Comments
 (0)