Skip to content

Commit

Permalink
fix(5595): use separate install options for second dev install
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanyalti committed Nov 6, 2024
1 parent c046668 commit 9d5c737
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testing/integration/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ func TestForceInstallDevelopment(t *testing.T) {
require.NoError(t, err)
err = devFix2.Prepare(ctx)
require.NoError(t, err)
devOut2, err := devFix2.Install(ctx, &devInstOpt)
devInstOpt2 := atesting.InstallOpts{Force: true, Privileged: false, Develop: true}
devOut2, err := devFix2.Install(ctx, &devInstOpt2)
if err != nil {
t.Logf("install output: %s", devOut2)
require.NoError(t, err)
Expand Down

0 comments on commit 9d5c737

Please sign in to comment.