@@ -697,7 +697,7 @@ var _ = Describe("Security Group Actions", func() {
697
697
)
698
698
})
699
699
700
- It ("makes mutiple calls to get spaces" , func () {
700
+ It ("makes multiple calls to get spaces" , func () {
701
701
Expect (len (securityGroupSummaries )).To (Equal (1 ))
702
702
Expect (fakeCloudControllerClient .GetSpacesCallCount ()).To (Equal (batches ))
703
703
Expect (fakeCloudControllerClient .GetSpacesArgsForCall (0 )).
@@ -1038,7 +1038,7 @@ var _ = Describe("Security Group Actions", func() {
1038
1038
})
1039
1039
})
1040
1040
1041
- When ("the seurity group is not bound to the space" , func () {
1041
+ When ("the security group is not bound to the space" , func () {
1042
1042
BeforeEach (func () {
1043
1043
fakeCloudControllerClient .UnbindSecurityGroupStagingSpaceReturns (
1044
1044
ccv3.Warnings {"get-security-group-warning" },
@@ -1240,15 +1240,15 @@ var _ = Describe("Security Group Actions", func() {
1240
1240
var (
1241
1241
securityGroupName = "tom"
1242
1242
globallyEnabled bool
1243
- lifeycle constant.SecurityGroupLifecycle
1243
+ lifecycle constant.SecurityGroupLifecycle
1244
1244
executeErr error
1245
1245
1246
1246
trueValue = true
1247
1247
falseValue = false
1248
1248
)
1249
1249
1250
1250
JustBeforeEach (func () {
1251
- warnings , executeErr = actor .UpdateSecurityGroupGloballyEnabled (securityGroupName , lifeycle , globallyEnabled )
1251
+ warnings , executeErr = actor .UpdateSecurityGroupGloballyEnabled (securityGroupName , lifecycle , globallyEnabled )
1252
1252
})
1253
1253
1254
1254
When ("the request succeeds" , func () {
@@ -1273,7 +1273,7 @@ var _ = Describe("Security Group Actions", func() {
1273
1273
1274
1274
When ("updating staging to true" , func () {
1275
1275
BeforeEach (func () {
1276
- lifeycle = constant .SecurityGroupLifecycleStaging
1276
+ lifecycle = constant .SecurityGroupLifecycleStaging
1277
1277
globallyEnabled = true
1278
1278
})
1279
1279
@@ -1298,7 +1298,7 @@ var _ = Describe("Security Group Actions", func() {
1298
1298
1299
1299
When ("updating staging to false" , func () {
1300
1300
BeforeEach (func () {
1301
- lifeycle = constant .SecurityGroupLifecycleStaging
1301
+ lifecycle = constant .SecurityGroupLifecycleStaging
1302
1302
globallyEnabled = false
1303
1303
})
1304
1304
@@ -1323,7 +1323,7 @@ var _ = Describe("Security Group Actions", func() {
1323
1323
1324
1324
When ("updating running to true" , func () {
1325
1325
BeforeEach (func () {
1326
- lifeycle = constant .SecurityGroupLifecycleRunning
1326
+ lifecycle = constant .SecurityGroupLifecycleRunning
1327
1327
globallyEnabled = true
1328
1328
})
1329
1329
@@ -1348,7 +1348,7 @@ var _ = Describe("Security Group Actions", func() {
1348
1348
1349
1349
When ("updating running to false" , func () {
1350
1350
BeforeEach (func () {
1351
- lifeycle = constant .SecurityGroupLifecycleRunning
1351
+ lifecycle = constant .SecurityGroupLifecycleRunning
1352
1352
globallyEnabled = false
1353
1353
})
1354
1354
@@ -1374,7 +1374,7 @@ var _ = Describe("Security Group Actions", func() {
1374
1374
1375
1375
When ("the request to get the security group errors" , func () {
1376
1376
BeforeEach (func () {
1377
- lifeycle = constant .SecurityGroupLifecycleRunning
1377
+ lifecycle = constant .SecurityGroupLifecycleRunning
1378
1378
globallyEnabled = false
1379
1379
1380
1380
fakeCloudControllerClient .GetSecurityGroupsReturns (
@@ -1398,7 +1398,7 @@ var _ = Describe("Security Group Actions", func() {
1398
1398
1399
1399
When ("the request to update the security group errors" , func () {
1400
1400
BeforeEach (func () {
1401
- lifeycle = constant .SecurityGroupLifecycleRunning
1401
+ lifecycle = constant .SecurityGroupLifecycleRunning
1402
1402
globallyEnabled = false
1403
1403
1404
1404
fakeCloudControllerClient .GetSecurityGroupsReturns (
0 commit comments