@@ -20,7 +20,7 @@ func TestAccTFETeamNotificationConfiguration_basic(t *testing.T) {
20
20
t .Fatal (err )
21
21
}
22
22
23
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
23
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
24
24
t .Cleanup (cleanupOrg )
25
25
26
26
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -58,7 +58,7 @@ func TestAccTFETeamNotificationConfiguration_emailUserIDs(t *testing.T) {
58
58
t .Fatal (err )
59
59
}
60
60
61
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
61
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
62
62
t .Cleanup (cleanupOrg )
63
63
64
64
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -96,7 +96,7 @@ func TestAccTFETeamNotificationConfiguration_update(t *testing.T) {
96
96
t .Fatal (err )
97
97
}
98
98
99
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
99
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
100
100
t .Cleanup (cleanupOrg )
101
101
102
102
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -156,7 +156,7 @@ func TestAccTFETeamNotificationConfiguration_updateEmailUserIDs(t *testing.T) {
156
156
t .Fatal (err )
157
157
}
158
158
159
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
159
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
160
160
t .Cleanup (cleanupOrg )
161
161
162
162
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -214,7 +214,7 @@ func TestAccTFETeamNotificationConfiguration_validateSchemaAttributesEmail(t *te
214
214
t .Fatal (err )
215
215
}
216
216
217
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
217
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
218
218
t .Cleanup (cleanupOrg )
219
219
220
220
resource .Test (t , resource.TestCase {
@@ -239,7 +239,7 @@ func TestAccTFETeamNotificationConfiguration_validateSchemaAttributesGeneric(t *
239
239
t .Fatal (err )
240
240
}
241
241
242
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
242
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
243
243
t .Cleanup (cleanupOrg )
244
244
245
245
resource .Test (t , resource.TestCase {
@@ -268,7 +268,7 @@ func TestAccTFETeamNotificationConfiguration_validateSchemaAttributesSlack(t *te
268
268
t .Fatal (err )
269
269
}
270
270
271
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
271
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
272
272
t .Cleanup (cleanupOrg )
273
273
274
274
resource .Test (t , resource.TestCase {
@@ -301,7 +301,7 @@ func TestAccTFETeamNotificationConfiguration_validateSchemaAttributesMicrosoftTe
301
301
t .Fatal (err )
302
302
}
303
303
304
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
304
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
305
305
t .Cleanup (cleanupOrg )
306
306
307
307
resource .Test (t , resource.TestCase {
@@ -334,7 +334,7 @@ func TestAccTFETeamNotificationConfiguration_validateSchemaAttributesBadDestinat
334
334
t .Fatal (err )
335
335
}
336
336
337
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
337
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
338
338
t .Cleanup (cleanupOrg )
339
339
340
340
resource .Test (t , resource.TestCase {
@@ -355,7 +355,7 @@ func TestAccTFETeamNotificationConfiguration_updateValidateSchemaAttributesEmail
355
355
t .Fatal (err )
356
356
}
357
357
358
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
358
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
359
359
t .Cleanup (cleanupOrg )
360
360
361
361
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -404,7 +404,7 @@ func TestAccTFETeamNotificationConfiguration_updateValidateSchemaAttributesGener
404
404
t .Fatal (err )
405
405
}
406
406
407
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
407
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
408
408
t .Cleanup (cleanupOrg )
409
409
410
410
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -457,7 +457,7 @@ func TestAccTFETeamNotificationConfiguration_updateValidateSchemaAttributesSlack
457
457
t .Fatal (err )
458
458
}
459
459
460
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
460
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
461
461
t .Cleanup (cleanupOrg )
462
462
463
463
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -514,7 +514,7 @@ func TestAccTFETeamNotificationConfiguration_updateValidateSchemaAttributesMicro
514
514
t .Fatal (err )
515
515
}
516
516
517
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
517
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
518
518
t .Cleanup (cleanupOrg )
519
519
520
520
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -567,7 +567,7 @@ func TestAccTFETeamNotificationConfiguration_duplicateTriggers(t *testing.T) {
567
567
t .Fatal (err )
568
568
}
569
569
570
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
570
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
571
571
t .Cleanup (cleanupOrg )
572
572
573
573
notificationConfiguration := & tfe.NotificationConfiguration {}
@@ -605,7 +605,7 @@ func TestAccTFETeamNotificationConfigurationImport_basic(t *testing.T) {
605
605
t .Fatal (err )
606
606
}
607
607
608
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
608
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
609
609
t .Cleanup (cleanupOrg )
610
610
611
611
resource .Test (t , resource.TestCase {
@@ -633,7 +633,7 @@ func TestAccTFETeamNotificationConfigurationImport_emailUserIDs(t *testing.T) {
633
633
t .Fatal (err )
634
634
}
635
635
636
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
636
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
637
637
t .Cleanup (cleanupOrg )
638
638
639
639
resource .Test (t , resource.TestCase {
@@ -661,7 +661,7 @@ func TestAccTFETeamNotificationConfigurationImport_emptyEmailUserIDs(t *testing.
661
661
t .Fatal (err )
662
662
}
663
663
664
- org , cleanupOrg := createBusinessOrganization (t , tfeClient )
664
+ org , cleanupOrg := createPlusOrganization (t , tfeClient )
665
665
t .Cleanup (cleanupOrg )
666
666
667
667
resource .Test (t , resource.TestCase {
0 commit comments