@@ -105,7 +105,7 @@ func cleanupWordpressBundle(p *porter.TestPorter, namespace string) {
105105 err := uninstallOptions .Validate ([]string {}, p .Porter )
106106 require .NoError (p .T (), err , "validation of uninstall opts for root bundle failed" )
107107
108- err = p .UninstallBundle (nil , uninstallOptions )
108+ err = p .UninstallBundle (context . Background () , uninstallOptions )
109109 require .NoError (p .T (), err , "uninstall of root bundle failed" )
110110
111111 // Verify that the dependency installation is deleted
@@ -130,7 +130,7 @@ func upgradeWordpressBundle(p *porter.TestPorter, namespace string) {
130130 err := upgradeOpts .Validate ([]string {}, p .Porter )
131131 require .NoError (p .T (), err , "validation of upgrade opts for root bundle failed" )
132132
133- err = p .UpgradeBundle (nil , upgradeOpts )
133+ err = p .UpgradeBundle (context . Background () , upgradeOpts )
134134 require .NoError (p .T (), err , "upgrade of root bundle failed" )
135135
136136 // Verify that the dependency claim is upgraded
@@ -161,7 +161,7 @@ func invokeWordpressBundle(p *porter.TestPorter, namespace string) {
161161 err := invokeOpts .Validate ([]string {}, p .Porter )
162162 require .NoError (p .T (), err , "validation of invoke opts for root bundle failed" )
163163
164- err = p .InvokeBundle (nil , invokeOpts )
164+ err = p .InvokeBundle (context . Background () , invokeOpts )
165165 require .NoError (p .T (), err , "invoke of root bundle failed" )
166166
167167 // Verify that the dependency claim is invoked
@@ -191,7 +191,7 @@ func uninstallWordpressBundle(p *porter.TestPorter, namespace string) {
191191 err := uninstallOptions .Validate ([]string {}, p .Porter )
192192 require .NoError (p .T (), err , "validation of uninstall opts for root bundle failed" )
193193
194- err = p .UninstallBundle (nil , uninstallOptions )
194+ err = p .UninstallBundle (context . Background () , uninstallOptions )
195195 require .NoError (p .T (), err , "uninstall of root bundle failed" )
196196
197197 // Verify that the dependency claim is uninstalled
0 commit comments