Skip to content

Commit

Permalink
add arn check
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Aug 24, 2020
1 parent 519b649 commit 182bee2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aws/resource_aws_elastic_transcoder_pipeline_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package aws
import (
"fmt"
"reflect"
"regexp"
"sort"
"testing"

Expand All @@ -28,6 +29,7 @@ func TestAccAWSElasticTranscoderPipeline_basic(t *testing.T) {
Config: awsElasticTranscoderPipelineConfigBasic(rName),
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSElasticTranscoderPipelineExists(resourceName, pipeline),
testAccMatchResourceAttrRegionalARN(resourceName, "arn", "elastictranscoder", regexp.MustCompile(`pipeline/.+`)),
),
},
{
Expand Down

0 comments on commit 182bee2

Please sign in to comment.