@@ -88,22 +88,22 @@ func SecondClusterSpec(ctx context.Context, inputGetter func() CommonSpecInput)
88
88
It ("should successfully add and remove a second cluster" , func () {
89
89
mgmtClient := input .BootstrapClusterProxy .GetClient ()
90
90
91
- By ("create the first cluster and verify that it's ready" )
91
+ By ("Create the first cluster and verify that it's ready" )
92
92
createCluster (clusterctl .DefaultFlavor , namespace1 , clusterResources1 )
93
93
Expect (IsClusterReady (ctx , mgmtClient , clusterResources1 .Cluster )).To (BeTrue ())
94
94
95
- By ("create the second cluster and verify that it's ready" )
95
+ By ("Create the second cluster and verify that it's ready" )
96
96
createCluster ("second-cluster" , namespace2 , clusterResources2 )
97
97
Expect (IsClusterReady (ctx , mgmtClient , clusterResources2 .Cluster )).To (BeTrue ())
98
98
99
- By ("delete the second cluster" )
99
+ By ("Delete the second cluster" )
100
100
dumpSpecResourcesAndCleanup (ctx , specName , input .BootstrapClusterProxy , input .ArtifactFolder , namespace2 ,
101
101
cancelWatches2 , clusterResources2 .Cluster , input .E2EConfig .GetIntervals , false )
102
102
103
- By ("verify the second cluster is gone" )
103
+ By ("Verify the second cluster is gone" )
104
104
Expect (ClusterExists (ctx , mgmtClient , clusterResources2 .Cluster )).To (BeFalse ())
105
105
106
- By ("verify the first cluster is still ready" )
106
+ By ("Verify the first cluster is still ready" )
107
107
Expect (IsClusterReady (ctx , mgmtClient , clusterResources1 .Cluster )).To (BeTrue ())
108
108
109
109
By ("PASSED!" )
0 commit comments