Fix memory argument

pull/7938/head
Thomas Stromberg 2020-04-29 12:33:26 -07:00
parent c63e3162d4
commit ae39950d7d
1 changed files with 1 additions and 1 deletions

View File

@ -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)