Skip to content

Commit b168d02

Browse files
author
Joshua Reed
committed
Uncomment slow unit test.
1 parent 0dc5ab0 commit b168d02

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/unit/cloud/affinity_groups_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ package cloud_test
1818

1919
import (
2020
"errors"
21-
"fmt"
2221

2322
"github.com/apache/cloudstack-go/v2/cloudstack"
2423
"github.com/aws/cluster-api-provider-cloudstack-staging/test/unit/dummies"
@@ -72,7 +71,6 @@ var _ = Describe("The AffinityGroup interface", func() {
7271

7372
When("using a real CloudStack client", func() {
7473
BeforeEach(func() {
75-
fmt.Println("blah2oomuch")
7674
client = realCloudClient
7775
dummies.AffinityGroup.ID = "" // Force name fetching.
7876
})

test/unit/cloud/cloud_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func TestCloud(t *testing.T) {
4343
projDir := os.Getenv("PROJECT_DIR")
4444
var connectionErr error
4545
realCloudClient, connectionErr = cloud.NewClient(projDir + "/cloud-config")
46-
Ω(connectionErr).ShouldNot(HaveOccured())
46+
Ω(connectionErr).ShouldNot(HaveOccurred())
4747

4848
// Create a real CloudStack client.
4949
realCSClient, connectionErr = helpers.NewCSClient()

0 commit comments

Comments
 (0)