@@ -15,7 +15,6 @@ import (
15
15
"time"
16
16
17
17
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
18
- "github.com/stretchr/testify/assert"
19
18
"github.com/stretchr/testify/require"
20
19
)
21
20
@@ -60,36 +59,6 @@ func TestRegress3887(t *testing.T) {
60
59
integration .ProgramTest (t , & test )
61
60
}
62
61
63
- func TestRegress1504 (t * testing.T ) {
64
- if testing .Short () {
65
- t .Skipf ("Skipping test in -short mode because it needs cloud credentials" )
66
- return
67
- }
68
- test := getPythonBaseOptions (t ).
69
- With (integration.ProgramTestOptions {
70
- // Not ideal, need investigation:
71
- ExpectRefreshChanges : true ,
72
- Dir : filepath .Join ("test-programs" , "regress-1504" , "init" ),
73
- EditDirs : []integration.EditDir {
74
- {
75
- Dir : filepath .Join ("test-programs" , "regress-1504" , "step-1" ),
76
- ExtraRuntimeValidation : func (t * testing.T , stack integration.RuntimeValidationStackInfo ) {
77
- assert .Equal (t , float64 (1 ), stack .Outputs ["launch_template_latest_version" ])
78
- },
79
- Additive : true ,
80
- },
81
- {
82
- Dir : filepath .Join ("test-programs" , "regress-1504" , "step-2" ),
83
- ExtraRuntimeValidation : func (t * testing.T , stack integration.RuntimeValidationStackInfo ) {
84
- assert .Equal (t , float64 (2 ), stack .Outputs ["launch_template_latest_version" ])
85
- },
86
- Additive : true ,
87
- },
88
- },
89
- })
90
- integration .ProgramTest (t , & test )
91
- }
92
-
93
62
// Make sure that importing an AWS targetGroup succeeds.
94
63
func TestRegress2534 (t * testing.T ) {
95
64
ctx := context .Background ()
0 commit comments