Skip to content

Commit

Permalink
Fix commented out check for aws_region.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveremy committed Sep 21, 2018
1 parent a8f6ec7 commit c0b4f00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import (
)

func TestExamples(t *testing.T) {
// awsRegion := os.Getenv("AWS_REGION")
// if awsRegion == "" {
// t.Skipf("Skipping test due to missing AWS_REGION environment variable")
// }
awsRegion := os.Getenv("AWS_REGION")
if awsRegion == "" {
t.Skipf("Skipping test due to missing AWS_REGION environment variable")
}
azureEnviron := os.Getenv("ARM_ENVIRONMENT")
if azureEnviron == "" {
t.Skipf("Skipping test due to missing ARM_ENVIRONMENT variable")
Expand Down

0 comments on commit c0b4f00

Please sign in to comment.