@@ -44,15 +44,16 @@ func TestAccGitlabProject_basic(t *testing.T) {
44
44
MergeMethod : gitlab .FastForwardMerge ,
45
45
OnlyAllowMergeIfPipelineSucceeds : true ,
46
46
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
47
- SquashOption : gitlab .SquashOptionDefaultOff ,
48
- AllowMergeOnSkippedPipeline : false ,
49
- Archived : false , // needless, but let's make this explicit
50
- PackagesEnabled : true ,
51
- PagesAccessLevel : gitlab .PublicAccessControl ,
52
- BuildCoverageRegex : "foo" ,
53
- IssuesTemplate : "" ,
54
- MergeRequestsTemplate : "" ,
55
- CIConfigPath : ".gitlab-ci.yml@mynamespace/myproject" ,
47
+ SquashOption : gitlab .SquashOptionDefaultOff ,
48
+ AllowMergeOnSkippedPipeline : false ,
49
+ Archived : false , // needless, but let's make this explicit
50
+ PackagesEnabled : true ,
51
+ PagesAccessLevel : gitlab .PublicAccessControl ,
52
+ PrintingMergeRequestLinkEnabled : true ,
53
+ BuildCoverageRegex : "foo" ,
54
+ IssuesTemplate : "" ,
55
+ MergeRequestsTemplate : "" ,
56
+ CIConfigPath : ".gitlab-ci.yml@mynamespace/myproject" ,
56
57
}
57
58
58
59
defaultsMainBranch = defaults
@@ -463,6 +464,7 @@ func TestAccGitlabProject_willError(t *testing.T) {
463
464
SharedRunnersEnabled : true ,
464
465
Visibility : gitlab .PublicVisibility ,
465
466
MergeMethod : gitlab .FastForwardMerge ,
467
+ PrintingMergeRequestLinkEnabled : true ,
466
468
OnlyAllowMergeIfPipelineSucceeds : true ,
467
469
OnlyAllowMergeIfAllDiscussionsAreResolved : true ,
468
470
SquashOption : gitlab .SquashOptionDefaultOff ,
@@ -569,10 +571,11 @@ func TestAccGitlabProject_transfer(t *testing.T) {
569
571
MergeMethod : gitlab .NoFastForwardMerge ,
570
572
OnlyAllowMergeIfPipelineSucceeds : false ,
571
573
OnlyAllowMergeIfAllDiscussionsAreResolved : false ,
572
- SquashOption : gitlab .SquashOptionDefaultOff ,
573
- PackagesEnabled : true ,
574
- PagesAccessLevel : gitlab .PrivateAccessControl ,
575
- BuildCoverageRegex : "foo" ,
574
+ SquashOption : gitlab .SquashOptionDefaultOff ,
575
+ PackagesEnabled : true ,
576
+ PrintingMergeRequestLinkEnabled : true ,
577
+ PagesAccessLevel : gitlab .PrivateAccessControl ,
578
+ BuildCoverageRegex : "foo" ,
576
579
}
577
580
578
581
resource .Test (t , resource.TestCase {
0 commit comments