From cebba2983281bb4574be1ba63880ed7afdb9e4c4 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Wed, 27 May 2020 10:47:31 -0700 Subject: [PATCH] comments --- test/integration/multinode_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/multinode_test.go b/test/integration/multinode_test.go index 3210ed4bb3..e43c5a2eb0 100644 --- a/test/integration/multinode_test.go +++ b/test/integration/multinode_test.go @@ -192,7 +192,7 @@ func validateStopMultiNodeCluster(ctx context.Context, t *testing.T, profile str t.Fatalf("failed to run minikube status. args %q : %v", rr.Command(), err) } - // Make sure minikube status shows 3 stopped nodes + // Make sure minikube status shows 2 stopped nodes rr, err = Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "status", "--alsologtostderr")) if err != nil && rr.ExitCode != 7 { t.Fatalf("failed to run minikube status. args %q : %v", rr.Command(), err) @@ -224,7 +224,7 @@ func validateRestartMultiNodeCluster(ctx context.Context, t *testing.T, profile t.Fatalf("failed to start cluster. args %q : %v", rr.Command(), err) } - // Make sure minikube status shows 3 running nodes + // Make sure minikube status shows 2 running nodes rr, err = Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "status", "--alsologtostderr")) if err != nil { t.Fatalf("failed to run minikube status. args %q : %v", rr.Command(), err)