Skip to content

Commit

Permalink
tests/ds/region: Fix hardcoded region
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver committed Dec 2, 2020
1 parent 8d85407 commit 1d54f80
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 1d54f80

Please sign in to comment.