Skip to content

Commit

Permalink
test: fix provisioning scale test labels (#4064)
Browse files Browse the repository at this point in the history
  • Loading branch information
njtran committed Jun 15, 2023
1 parent a9a303f commit 966c75b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/suites/scale/provisioning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var _ = Describe("Provisioning", Label(debug.NoWatch), func() {
env.EventuallyExpectCreatedNodeCount("==", expectedNodeCount)
env.EventuallyExpectInitializedNodeCount("==", expectedNodeCount)
env.EventuallyExpectHealthyPodCount(selector, replicas)
}, aws.ProvisioningEventType, testGroup, "pod-dense", aws.GenerateTestDimensions(expectedNodeCount, 0, replicasPerNode))
}, aws.ProvisioningEventType, testGroup, "node-dense", aws.GenerateTestDimensions(expectedNodeCount, 0, replicasPerNode))
}, SpecTimeout(time.Minute*30))
It("should scale successfully on a pod-dense scale-up", Label(debug.NoEvents), func(_ context.Context) {
replicasPerNode := 110
Expand Down Expand Up @@ -156,6 +156,6 @@ var _ = Describe("Provisioning", Label(debug.NoWatch), func() {
env.EventuallyExpectCreatedNodeCount("==", expectedNodeCount)
env.EventuallyExpectInitializedNodeCount("==", expectedNodeCount)
env.EventuallyExpectHealthyPodCount(selector, replicas)
}, aws.ProvisioningEventType, testGroup, "node-dense", aws.GenerateTestDimensions(expectedNodeCount, 0, replicasPerNode))
}, aws.ProvisioningEventType, testGroup, "pod-dense", aws.GenerateTestDimensions(expectedNodeCount, 0, replicasPerNode))
}, SpecTimeout(time.Minute*30))
})

0 comments on commit 966c75b

Please sign in to comment.