Skip to content

Commit 2d40c3d

Browse files
authored
conformance: fix per-test cleanup (#4104)
Fixes #4102
1 parent 01ab027 commit 2d40c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conformance/utils/suite/conformance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (test *ConformanceTest) Run(t *testing.T, suite *ConformanceTestSuite) {
6868

6969
for _, manifestLocation := range test.Manifests {
7070
tlog.Logf(t, "Applying %s", manifestLocation)
71-
suite.Applier.MustApplyWithCleanup(t, suite.Client, suite.TimeoutConfig, manifestLocation, suite.Cleanup)
71+
suite.Applier.MustApplyWithCleanup(t, suite.Client, suite.TimeoutConfig, manifestLocation, true)
7272
}
7373

7474
if featuresInfo != "" {

0 commit comments

Comments
 (0)