Skip to content

Commit b45ac72

Browse files
committed
Fix brackets
Signed-off-by: Timo Sand <[email protected]>
1 parent d5d8d6e commit b45ac72

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

github/provider_test.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -131,25 +131,25 @@ func TestAccProviderConfigure(t *testing.T) {
131131
},
132132
},
133133
})
134+
})
134135

135-
t.Run("can be configured with an organization account legacy", func(t *testing.T) {
136-
config := fmt.Sprintf(`
136+
t.Run("can be configured with an organization account legacy", func(t *testing.T) {
137+
config := fmt.Sprintf(`
137138
provider "github" {
138139
token = "%s"
139140
organization = "%s"
140141
}`, testAccConf.token, testAccConf.owner)
141142

142-
resource.Test(t, resource.TestCase{
143-
PreCheck: func() { skipUnlessHasOrgs(t) },
144-
ProviderFactories: providerFactories,
145-
Steps: []resource.TestStep{
146-
{
147-
Config: config,
148-
PlanOnly: true,
149-
ExpectNonEmptyPlan: false,
150-
},
143+
resource.Test(t, resource.TestCase{
144+
PreCheck: func() { skipUnlessHasOrgs(t) },
145+
ProviderFactories: providerFactories,
146+
Steps: []resource.TestStep{
147+
{
148+
Config: config,
149+
PlanOnly: true,
150+
ExpectNonEmptyPlan: false,
151151
},
152-
})
152+
},
153153
})
154154
})
155155

0 commit comments

Comments
 (0)