Skip to content

Commit

Permalink
Add dashboard port option in corresponding functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
zigarn committed Jul 3, 2021
1 parent e63b223 commit 97c7a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/functional_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ func validateDashboardCmd(ctx context.Context, t *testing.T, profile string) {
mctx, cancel := context.WithTimeout(ctx, Seconds(300))
defer cancel()

args := []string{"dashboard", "--url", "-p", profile, "--alsologtostderr", "-v=1"}
args := []string{"dashboard", "--url", "--port", "36195", "-p", profile, "--alsologtostderr", "-v=1"}
ss, err := Start(t, exec.CommandContext(mctx, Target(), args...))
if err != nil {
t.Errorf("failed to run minikube dashboard. args %q : %v", args, err)
Expand Down

0 comments on commit 97c7a1e

Please sign in to comment.