Skip to content

Commit 0391be1

Browse files
author
Joshua Reed
committed
Typo fixup.
1 parent 867e510 commit 0391be1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/v1beta1/cloudstackmachine_webhook_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,19 @@ var _ = Describe("CloudStackMachine webhook", func() {
8282
Should(MatchError(MatchRegexp(forbiddenRegex, "details")))
8383
})
8484

85-
It("should reject identity reference kind udpates to the CloudStackMachine", func() {
85+
It("should reject identity reference kind updates to the CloudStackMachine", func() {
8686
dummies.CSMachine1.Spec.IdentityRef.Kind = "ConfigMap"
8787
Ω(k8sClient.Update(ctx, dummies.CSMachine1)).
8888
Should(MatchError(MatchRegexp(forbiddenRegex, "identityRef\\.Kind")))
8989
})
9090

91-
It("should reject identity reference name udpates to the CloudStackMachine", func() {
91+
It("should reject identity reference name updates to the CloudStackMachine", func() {
9292
dummies.CSMachine1.Spec.IdentityRef.Name = "IdentityConfigMap"
9393
Ω(k8sClient.Update(ctx, dummies.CSMachine1)).
9494
Should(MatchError(MatchRegexp(forbiddenRegex, "identityRef\\.Name")))
9595
})
9696

97-
It("should reject udpates to the list of affinty groups of the CloudStackMachine", func() {
97+
It("should reject updates to the list of affinty groups of the CloudStackMachine", func() {
9898
dummies.CSMachine1.Spec.AffinityGroupIDs = []string{"28b907b8-75a7-4214-bd3d-6c61961fc2af"}
9999
Ω(k8sClient.Update(ctx, dummies.CSMachine1)).
100100
Should(MatchError(MatchRegexp(forbiddenRegex, "AffinityGroupIDs")))

0 commit comments

Comments
 (0)