From 1d54f80181a16ae9eee7e5d41863487337998ab1 Mon Sep 17 00:00:00 2001 From: Dirk Avery Date: Tue, 1 Dec 2020 20:43:41 -0500 Subject: [PATCH] tests/ds/region: Fix hardcoded region --- aws/data_source_aws_region_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aws/data_source_aws_region_test.go b/aws/data_source_aws_region_test.go index 6b2d22a8ae3..11a847dba41 100644 --- a/aws/data_source_aws_region_test.go +++ b/aws/data_source_aws_region_test.go @@ -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, }, } @@ -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, }, }