From 2eedffdaaeee9dbb50a01656b905e2d657b48aa8 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Wed, 11 Nov 2020 14:52:30 -0800 Subject: [PATCH] include start args so that test passes locally --- test/integration/pause_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/pause_test.go b/test/integration/pause_test.go index d1a2525f43..c412d62942 100644 --- a/test/integration/pause_test.go +++ b/test/integration/pause_test.go @@ -83,6 +83,7 @@ func validateStartNoReconfigure(ctx context.Context, t *testing.T, profile strin defer PostMortemLogs(t, profile) args := []string{"start", "-p", profile, "--alsologtostderr", "-v=1"} + args = append(args, StartArgs()...) rr, err := Run(t, exec.CommandContext(ctx, Target(), args...)) if err != nil { t.Fatalf("failed to second start a running minikube with args: %q : %v", rr.Command(), err)