@@ -28,7 +28,7 @@ const (
28
28
testAccFileCreate = `
29
29
resource "githubfile_file" "foo" {
30
30
repository_owner = "form3tech-oss"
31
- repository_name = "terraform-provider-github-file -test"
31
+ repository_name = "terraform-provider-githubfile -test"
32
32
branch = "master"
33
33
path = "foo/bar/baz/README.md"
34
34
contents = "foo\nbar\nbaz"
@@ -37,7 +37,7 @@ resource "githubfile_file" "foo" {
37
37
testAccFileUpdate = `
38
38
resource "githubfile_file" "foo" {
39
39
repository_owner = "form3tech-oss"
40
- repository_name = "terraform-provider-github-file -test"
40
+ repository_name = "terraform-provider-githubfile -test"
41
41
branch = "master"
42
42
path = "foo/bar/baz/README.md"
43
43
contents = "foo\nbar\nqux"
@@ -64,7 +64,7 @@ func TestAccResourceFile_basic(t *testing.T) {
64
64
Config : testAccFileCreate ,
65
65
Check : resource .ComposeAggregateTestCheckFunc (
66
66
testAccCheckFileExists (resourceName , & before ),
67
- resource .TestCheckResourceAttr (resourceName , repositoryNameAttributeName , "terraform-provider-github-file -test" ),
67
+ resource .TestCheckResourceAttr (resourceName , repositoryNameAttributeName , "terraform-provider-githubfile -test" ),
68
68
resource .TestCheckResourceAttr (resourceName , repositoryOwnerAttributeName , "form3tech-oss" ),
69
69
resource .TestCheckResourceAttr (resourceName , branchAttributeName , "master" ),
70
70
resource .TestCheckResourceAttr (resourceName , pathAttributeName , "foo/bar/baz/README.md" ),
@@ -80,7 +80,7 @@ func TestAccResourceFile_basic(t *testing.T) {
80
80
Config : testAccFileUpdate ,
81
81
Check : resource .ComposeAggregateTestCheckFunc (
82
82
testAccCheckFileExists (resourceName , & before ),
83
- resource .TestCheckResourceAttr (resourceName , repositoryNameAttributeName , "terraform-provider-github-file -test" ),
83
+ resource .TestCheckResourceAttr (resourceName , repositoryNameAttributeName , "terraform-provider-githubfile -test" ),
84
84
resource .TestCheckResourceAttr (resourceName , repositoryOwnerAttributeName , "form3tech-oss" ),
85
85
resource .TestCheckResourceAttr (resourceName , branchAttributeName , "master" ),
86
86
resource .TestCheckResourceAttr (resourceName , pathAttributeName , "foo/bar/baz/README.md" ),
0 commit comments