Skip to content

Commit

Permalink
Merge branch 'sdkCore' of github.com:IBM/networking-go-sdk into sdkCore
Browse files Browse the repository at this point in the history
  • Loading branch information
kennburger committed Oct 19, 2021
2 parents 09353da + 00cf297 commit b54e92e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions cisipapiv1/cis_ip_api_v1_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const configFile = "../cis.env"
var configLoaded bool = true

func shouldSkipTest() {
Skip("Skipping")
if !configLoaded {
Skip("External configuration is not available, skipping...")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const configFile = "../cis.env"
var configLoaded bool = true

func shouldSkipTest() {
Skip("Skipping")
if !configLoaded {
Skip("External configuration is not available, skipping...")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
var configLoaded = false

func shouldSkipTest() {
//Skip("Skipping Tests")
Skip("Skipping Tests")
if !configLoaded {
Skip("External configuration is not available, skipping...")
}
Expand Down Expand Up @@ -117,7 +117,9 @@ var _ = Describe(`TransitGatewayApisV1`, func() {
connID := *conn.ID
deleteTransitGatewayConnectionOptions := service.NewDeleteTransitGatewayConnectionOptions(gatewayID, connID)

service.DeleteTransitGatewayConnection(deleteTransitGatewayConnectionOptions)
detailedResponse, err := service.DeleteTransitGatewayConnection(deleteTransitGatewayConnectionOptions)
Expect(err).To(BeNil())
Expect(detailedResponse.StatusCode).To(Equal(204))
}
} else { // remove empty gateways
deleteTransitGatewayOptions := service.NewDeleteTransitGatewayOptions(gatewayID)
Expand Down
2 changes: 1 addition & 1 deletion zonessettingsv1/zones_settings_v1_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ var _ = Describe(`zone_settings_v1_test`, func() {
Describe(`zone_settings_v1_test`, func() {
Context(`zone_settings_v1_test`, func() {
It(`DNSSEC setting test`, func() {
// shouldSkipTest()
shouldSkipTest()
getOpt := service.NewGetZoneDnssecOptions()
getResult, getResp, getErr := service.GetZoneDnssec(getOpt)
Expect(getErr).To(BeNil())
Expand Down
1 change: 1 addition & 0 deletions zonesv1/zones_v1_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const configFile = "../cis.env"
var configLoaded bool = true

func shouldSkipTest() {
Skip("Skipping Tests")
if !configLoaded {
Skip("External configuration is not available, skipping...")
}
Expand Down

0 comments on commit b54e92e

Please sign in to comment.