From ae39950d7d7ad0e4881c221baeb688662e4d0497 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Wed, 29 Apr 2020 12:33:26 -0700 Subject: [PATCH] Fix memory argument --- test/integration/docker_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/docker_test.go b/test/integration/docker_test.go index 43f0d981e8..e150f7ad30 100644 --- a/test/integration/docker_test.go +++ b/test/integration/docker_test.go @@ -75,7 +75,7 @@ func TestForceSystemd(t *testing.T) { defer CleanupWithLogs(t, profile, cancel) // Use the most verbose logging for the simplest test. If it fails, something is very wrong. - args := append([]string{"start", "-p", "--memory=1800", profile, "--force-systemd", "--alsologtostderr", "-v=5"}, StartArgs()...) + args := append([]string{"start", "-p", profile, "--memory=1800", "--force-systemd", "--alsologtostderr", "-v=5"}, StartArgs()...) rr, err := Run(t, exec.CommandContext(ctx, Target(), args...)) if err != nil { t.Errorf("failed to start minikube with args: %q : %v", rr.Command(), err)