Skip to content

Commit 05d3ce6

Browse files
mhodgsontimofurrer
authored andcommitted
Fix comma error
1 parent 78c400a commit 05d3ce6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/provider/resource_gitlab_group_saml_link_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestAccGitlabGroupSamlLink_basic(t *testing.T) {
2121
// PreCheck runs after Config so load test data here
2222
var samlLink gitlab.SAMLGroupLink
2323
testSamlLink := gitlab.SAMLGroupLink{
24-
Name: "test_saml_group"
24+
Name: "test_saml_group",
2525
}
2626

2727
resource.ParallelTest(t, resource.TestCase{
@@ -51,7 +51,7 @@ func TestAccGitlabGroupSamlLink_basic(t *testing.T) {
5151
SkipFunc: isRunningInCE,
5252
Config: testAccGitlabGroupSamlLinkUpdateConfig(rInt, &testSamlLink),
5353
Check: resource.ComposeTestCheckFunc(
54-
testAccCheckGitlabGroupSamlLinkExists(resourceName, &samlLink))
54+
testAccCheckGitlabGroupSamlLinkExists(resourceName, &samlLink)),
5555
},
5656
},
5757
})

0 commit comments

Comments
 (0)