Skip to content

Commit

Permalink
Merge pull request #16523 from hashicorp/t-gov-hardregion-region
Browse files Browse the repository at this point in the history
tests/ds/region: Fix hardcoded region
  • Loading branch information
YakDriver authored Dec 2, 2020
2 parents ea22fc2 + 1d54f80 commit 33eebc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aws/data_source_aws_region_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ func TestFindRegionByEc2Endpoint(t *testing.T) {
ErrCount: 1,
},
{
Value: "us-east-1",
Value: "us-east-1", // lintignore:AWSAT003
ErrCount: 1,
},
{
Value: "ec2.us-east-1.amazonaws.com",
Value: "ec2.us-east-1.amazonaws.com", // lintignore:AWSAT003
ErrCount: 0,
},
}
Expand All @@ -53,11 +53,11 @@ func TestFindRegionByName(t *testing.T) {
ErrCount: 1,
},
{
Value: "ec2.us-east-1.amazonaws.com",
Value: "ec2.us-east-1.amazonaws.com", // lintignore:AWSAT003
ErrCount: 1,
},
{
Value: "us-east-1",
Value: "us-east-1", // lintignore:AWSAT003
ErrCount: 0,
},
}
Expand Down

0 comments on commit 33eebc5

Please sign in to comment.