Skip to content

Commit d96697b

Browse files
committed
Cleared Merge conflicts
1 parent 4b870a8 commit d96697b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

support/environment_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ func TestGetPyTorchImage(t *testing.T) {
6363
}
6464
}
6565

66+
6667
func TestGetClusterID(t *testing.T) {
6768
os.Setenv(ClusterID, "my-cluster-id")
6869
clusterId, ok := GetClusterId()
@@ -72,8 +73,8 @@ func TestGetClusterID(t *testing.T) {
7273
if clusterId != "my-cluster-id" {
7374
gomega.Expect(clusterId).To(gomega.Equal("my-cluster-id"), "Expected GetClusterId() to return 'my-cluster-id', but got '%s'.", clusterId)
7475
}
75-
7676
}
77+
7778
func TestGetInstascaleOcmSecret(t *testing.T) {
7879
// Set the Instascale OCM secret environment variable.
7980
os.Setenv(InstaScaleOcmSecret, "default/instascale-ocm-secret")
@@ -118,6 +119,7 @@ func TestGetClusterType(t *testing.T) {
118119
envVarValue: "KIND",
119120
expected: KindCluster,
120121
},
122+
121123
}
122124
ttt := With(t)
123125
for _, tt := range tests {

support/machine_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ func TestGetMachineSets(t *testing.T) {
4444

4545
}
4646

47+
4748
/*
4849
import (
4950
@@ -164,3 +165,4 @@ func TestGetMachines(t *testing.T) {
164165
})
165166
}
166167
*/
168+

support/ocm_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package support
2+
23
/*
34
import (
45
"testing"
@@ -33,4 +34,5 @@ func TestGetMachinePools(t *testing.T) {
3334
3435
test.Expect(machinePools).Should(gomega.HaveLen(1), "Expected 1 machine pool, but got %d", len(machinePools))
3536
}
36-
*/
37+
*/
38+

0 commit comments

Comments
 (0)