File tree 5 files changed +11
-0
lines changed
5 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ func TestDetailedDiffList(t *testing.T) {
219
219
changeValue * []string
220
220
tfOut string
221
221
pulumiOut string
222
+ detailedDiff map [string ]any
222
223
}
223
224
224
225
for _ , schemaValueMakerPair := range schemaValueMakerPairs {
@@ -242,6 +243,7 @@ func TestDetailedDiffList(t *testing.T) {
242
243
changeValue : scenario .changeValue ,
243
244
tfOut : diff .TFOut ,
244
245
pulumiOut : diff .PulumiOut ,
246
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
245
247
})
246
248
})
247
249
}
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ func TestDetailedDiffMap(t *testing.T) {
163
163
changeValue * map [string ]* string
164
164
tfOut string
165
165
pulumiOut string
166
+ detailedDiff map [string ]any
166
167
}
167
168
168
169
for _ , schemaValueMakerPair := range schemaValueMakerPairs {
@@ -184,6 +185,7 @@ func TestDetailedDiffMap(t *testing.T) {
184
185
changeValue : scenario .changeValue ,
185
186
tfOut : diff .TFOut ,
186
187
pulumiOut : diff .PulumiOut ,
188
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
187
189
})
188
190
})
189
191
}
Original file line number Diff line number Diff line change @@ -323,6 +323,7 @@ func TestDetailedDiffObject(t *testing.T) {
323
323
changeValue * map [string ]string
324
324
tfOut string
325
325
pulumiOut string
326
+ detailedDiff map [string ]any
326
327
}
327
328
328
329
for _ , schema := range schemas {
@@ -342,6 +343,7 @@ func TestDetailedDiffObject(t *testing.T) {
342
343
changeValue : scenario .changeValue ,
343
344
tfOut : diff .TFOut ,
344
345
pulumiOut : diff .PulumiOut ,
346
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
345
347
})
346
348
})
347
349
}
@@ -361,6 +363,7 @@ func TestDetailedDiffObject(t *testing.T) {
361
363
changeValue : scenario .changeValue ,
362
364
tfOut : diff .TFOut ,
363
365
pulumiOut : diff .PulumiOut ,
366
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
364
367
})
365
368
})
366
369
}
Original file line number Diff line number Diff line change @@ -583,6 +583,7 @@ func TestDetailedDiffSet(t *testing.T) {
583
583
changeValue * []string
584
584
tfOut string
585
585
pulumiOut string
586
+ detailedDiff map [string ]any
586
587
}
587
588
588
589
for _ , schemaValueMakerPair := range schemaValueMakerPairs {
@@ -601,6 +602,7 @@ func TestDetailedDiffSet(t *testing.T) {
601
602
changeValue : scenario .changeValue ,
602
603
tfOut : diff .TFOut ,
603
604
pulumiOut : diff .PulumiOut ,
605
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
604
606
})
605
607
})
606
608
}
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ func TestDetailedDiffStringAttribute(t *testing.T) {
180
180
changeValue * string
181
181
tfOut string
182
182
pulumiOut string
183
+ detailedDiff map [string ]any
183
184
}
184
185
185
186
for _ , schema := range schemas {
@@ -201,6 +202,7 @@ func TestDetailedDiffStringAttribute(t *testing.T) {
201
202
changeValue : scenario .changeValue ,
202
203
tfOut : diff .TFOut ,
203
204
pulumiOut : diff .PulumiOut ,
205
+ detailedDiff : diff .PulumiDiff .DetailedDiff ,
204
206
})
205
207
})
206
208
}
You can’t perform that action at this time.
0 commit comments