@@ -11,17 +11,17 @@ import (
1111func TestRepositoryBasicPublicSuccess (t * testing.T ) {
1212 t .Parallel ()
1313
14- const VISIBILITY string = "public"
15- const REPOSITORY string = "test-repository"
16- const DESCRIPTION string = "description"
14+ const VISIBILITY string = "public"
15+ const REPOSITORY string = "test-repository"
16+ const DESCRIPTION string = "description"
1717
1818 terraformOptions := & terraform.Options {
1919 // The path to where your Terraform code is located
2020 TerraformDir : "repository-basic-public" ,
2121 Upgrade : true ,
2222 Vars : map [string ]interface {}{
23- "visibility" : VISIBILITY ,
24- "name" : REPOSITORY ,
23+ "visibility" : VISIBILITY ,
24+ "name" : REPOSITORY ,
2525 "description" : DESCRIPTION ,
2626 },
2727 }
@@ -34,7 +34,7 @@ func TestRepositoryBasicPublicSuccess(t *testing.T) {
3434
3535 outputRepositoryName := terraform .Output (t , terraformOptions , "repository_name" )
3636 outputRepository := terraform .OutputMapOfObjects (t , terraformOptions , "instance" )
37- validateRepositoryName := strings .ReplaceAll (outputRepositoryName , "\" " , "" )
37+ validateRepositoryName := strings .ReplaceAll (outputRepositoryName , "\" " , "" )
3838 assert .Equal (t , REPOSITORY , validateRepositoryName )
39- assert .NotEmpty (t , outputRepository , outputRepository )
39+ assert .NotEmpty (t , outputRepository , outputRepository )
4040}
0 commit comments