@@ -25,7 +25,7 @@ func TestStackDeploymentGroupsList(t *testing.T) {
25
25
stack , err := client .Stacks .Create (ctx , StackCreateOptions {
26
26
Name : "test-stack" ,
27
27
VCSRepo : & StackVCSRepoOptions {
28
- Identifier : "ctrombley/linked-stacks-demo-network " ,
28
+ Identifier : "hashicorp-guides/pet-nulls-stack " ,
29
29
OAuthTokenID : oauthClient .OAuthTokens [0 ].ID ,
30
30
},
31
31
Project : & Project {
@@ -36,7 +36,7 @@ func TestStackDeploymentGroupsList(t *testing.T) {
36
36
require .NoError (t , err )
37
37
require .NotNil (t , stack )
38
38
39
- stackUpdated , err := client .Stacks .FetchConfiguration (ctx , stack .ID )
39
+ stackUpdated , err := client .Stacks .FetchLatestFromVcs (ctx , stack .ID )
40
40
require .NoError (t , err )
41
41
require .NotNil (t , stackUpdated )
42
42
@@ -90,7 +90,7 @@ func TestStackDeploymentGroupsRead(t *testing.T) {
90
90
stack , err := client .Stacks .Create (ctx , StackCreateOptions {
91
91
Name : "test-stack" ,
92
92
VCSRepo : & StackVCSRepoOptions {
93
- Identifier : "ctrombley/linked-stacks-demo-network " ,
93
+ Identifier : "hashicorp-guides/pet-nulls-stack " ,
94
94
OAuthTokenID : oauthClient .OAuthTokens [0 ].ID ,
95
95
},
96
96
Project : & Project {
@@ -101,7 +101,7 @@ func TestStackDeploymentGroupsRead(t *testing.T) {
101
101
require .NoError (t , err )
102
102
require .NotNil (t , stack )
103
103
104
- stackUpdated , err := client .Stacks .FetchConfiguration (ctx , stack .ID )
104
+ stackUpdated , err := client .Stacks .FetchLatestFromVcs (ctx , stack .ID )
105
105
require .NoError (t , err )
106
106
require .NotNil (t , stackUpdated )
107
107
@@ -142,7 +142,7 @@ func TestStackDeploymentGroupsApproveAllPlans(t *testing.T) {
142
142
stack , err := client .Stacks .Create (ctx , StackCreateOptions {
143
143
Name : "test-stack" ,
144
144
VCSRepo : & StackVCSRepoOptions {
145
- Identifier : "ctrombley/linked-stacks-demo-network " ,
145
+ Identifier : "hashicorp-guides/pet-nulls-stack " ,
146
146
OAuthTokenID : oauthClient .OAuthTokens [0 ].ID ,
147
147
Branch : "main" ,
148
148
},
@@ -153,7 +153,7 @@ func TestStackDeploymentGroupsApproveAllPlans(t *testing.T) {
153
153
require .NoError (t , err )
154
154
require .NotNil (t , stack )
155
155
156
- stackUpdated , err := client .Stacks .FetchConfiguration (ctx , stack .ID )
156
+ stackUpdated , err := client .Stacks .FetchLatestFromVcs (ctx , stack .ID )
157
157
require .NoError (t , err )
158
158
require .NotNil (t , stackUpdated )
159
159
@@ -189,7 +189,7 @@ func TestStackDeploymentGroupsRerun(t *testing.T) {
189
189
stack , err := client .Stacks .Create (ctx , StackCreateOptions {
190
190
Name : "test-stack" ,
191
191
VCSRepo : & StackVCSRepoOptions {
192
- Identifier : "ctrombley/linked-stacks-demo-network " ,
192
+ Identifier : "hashicorp-guides/pet-nulls-stack " ,
193
193
OAuthTokenID : oauthClient .OAuthTokens [0 ].ID ,
194
194
Branch : "main" ,
195
195
},
@@ -200,7 +200,7 @@ func TestStackDeploymentGroupsRerun(t *testing.T) {
200
200
require .NoError (t , err )
201
201
require .NotNil (t , stack )
202
202
203
- stackUpdated , err := client .Stacks .FetchConfiguration (ctx , stack .ID )
203
+ stackUpdated , err := client .Stacks .FetchLatestFromVcs (ctx , stack .ID )
204
204
require .NoError (t , err )
205
205
require .NotNil (t , stackUpdated )
206
206
0 commit comments