File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -794,11 +794,15 @@ func TestSetInstallStatus(t *testing.T) {
794
794
func TestInstallWithAPIClient (t * testing.T ) {
795
795
password := "test-password"
796
796
797
+ // Create a runtimeconfig to be used in the install process
798
+ rc := runtimeconfig .New (nil )
799
+
797
800
// Create a config manager
798
- installationManager := installation .NewInstallationManager ()
801
+ installationManager := installation .NewInstallationManager (installation . WithRuntimeConfig ( rc ) )
799
802
800
803
// Create an install controller with the config manager
801
804
installController , err := install .NewInstallController (
805
+ install .WithRuntimeConfig (rc ),
802
806
install .WithInstallationManager (installationManager ),
803
807
)
804
808
require .NoError (t , err )
You can’t perform that action at this time.
0 commit comments