Skip to content

Commit 777f51a

Browse files
committed
chore(CI): add more DefaultVerify
1 parent 375d27c commit 777f51a

File tree

8 files changed

+9
-14
lines changed

8 files changed

+9
-14
lines changed

test/integration/beta_cluster/beta_cluster_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ func TestBetaCluster(t *testing.T) {
3333
)
3434

3535
gke.DefineVerify(func(assert *assert.Assertions) {
36-
// Commenting Default Verify due to issue 1478 for location Policy
37-
// gke.DefaultVerify(assert) //disables no changes
36+
gke.DefaultVerify(assert)
3837

3938
projectId := gke.GetStringOutput("project_id")
4039
location := gke.GetStringOutput("location")

test/integration/disable_client_cert/disable_client_cert_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ func TestDisableClientCert(t *testing.T) {
3131
)
3232

3333
bpt.DefineVerify(func(assert *assert.Assertions) {
34-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
35-
// bpt.DefaultVerify(assert)
34+
bpt.DefaultVerify(assert)
3635

3736
projectId := bpt.GetStringOutput("project_id")
3837
location := bpt.GetStringOutput("location")

test/integration/private_zonal_with_networking/private_zonal_with_networking_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ func TestPrivateZonalWithNetworking(t *testing.T) {
3232
)
3333

3434
bpt.DefineVerify(func(assert *assert.Assertions) {
35-
// Commenting Default Verify due to issue 1478 for location Policy
36-
// bpt.DefaultVerify(assert)
35+
bpt.DefaultVerify(assert)
3736

3837
projectId := bpt.GetStringOutput("project_id")
3938
location := bpt.GetStringOutput("location")

test/integration/sandbox_enabled/sandbox_enabled_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ func TestSandboxEnabled(t *testing.T) {
3030
)
3131

3232
bpt.DefineVerify(func(assert *assert.Assertions) {
33-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
34-
// bpt.DefaultVerify(assert)
33+
bpt.DefaultVerify(assert)
3534

3635
projectId := bpt.GetStringOutput("project_id")
3736
location := bpt.GetStringOutput("location")

test/integration/shared_vpc/shared_vpc_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ func TestSharedVPC(t *testing.T) {
2929
)
3030

3131
bpt.DefineVerify(func(assert *assert.Assertions) {
32-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
33-
// bpt.DefaultVerify(assert)
32+
bpt.DefaultVerify(assert)
3433

3534
projectId := bpt.GetStringOutput("project_id")
3635
location := bpt.GetStringOutput("location")

test/integration/simple_regional/simple_regional_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ func TestSimpleRegional(t *testing.T) {
3030
)
3131

3232
bpt.DefineVerify(func(assert *assert.Assertions) {
33-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
34-
// bpt.DefaultVerify(assert)
33+
bpt.DefaultVerify(assert)
3534

3635
projectId := bpt.GetStringOutput("project_id")
3736
location := bpt.GetStringOutput("location")

test/integration/simple_regional_cluster_autoscaling/simple_regional_cluster_autoscaling_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ func TestSimpleRegionalClusterAutoscaling(t *testing.T) {
3030
)
3131

3232
bpt.DefineVerify(func(assert *assert.Assertions) {
33+
bpt.DefaultVerify(assert)
34+
3335
projectId := bpt.GetStringOutput("project_id")
3436
location := bpt.GetStringOutput("location")
3537
clusterName := bpt.GetStringOutput("cluster_name")

test/integration/simple_regional_private/simple_regional_private_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ func TestSimpleRegionalPrivate(t *testing.T) {
3030
)
3131

3232
bpt.DefineVerify(func(assert *assert.Assertions) {
33-
//Skipping Default Verify as the Verify Stage fails due to change in Client Cert Token
34-
// bpt.DefaultVerify(assert)
33+
bpt.DefaultVerify(assert)
3534

3635
projectId := bpt.GetStringOutput("project_id")
3736
location := bpt.GetStringOutput("location")

0 commit comments

Comments
 (0)