Skip to content

Commit b644e55

Browse files
committed
Fix rebases gitlab version check error
1 parent 4993e9e commit b644e55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/provider/resource_gitlab_project_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ func TestAccGitlabProject_DeprecatedBuildCoverageRegex(t *testing.T) {
11551155
CheckDestroy: testAccCheckGitlabProjectDestroy,
11561156
Steps: []resource.TestStep{
11571157
{
1158-
SkipFunc: isGitLabVersionLessThan(testGitlabClient, "15.0"),
1158+
SkipFunc: isGitLabVersionLessThan(context.Background(), testGitlabClient, "15.0"),
11591159
Config: fmt.Sprintf(`
11601160
resource "gitlab_project" "this" {
11611161
name = "foo-%d"
@@ -1168,7 +1168,7 @@ func TestAccGitlabProject_DeprecatedBuildCoverageRegex(t *testing.T) {
11681168
),
11691169
},
11701170
{
1171-
SkipFunc: isGitLabVersionLessThan(testGitlabClient, "15.0"),
1171+
SkipFunc: isGitLabVersionLessThan(context.Background(), testGitlabClient, "15.0"),
11721172
ResourceName: "gitlab_project.this",
11731173
ImportState: true,
11741174
ImportStateVerify: true,

0 commit comments

Comments
 (0)