added missing commna

pull/12081/head
Steven Powell 2021-10-01 21:19:10 +00:00
parent 7b08ffe352
commit 02197b90cc
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ func validateImageCommands(ctx context.Context, t *testing.T, profile string) {
t.Run("ImageBuild", func(t *testing.T) {
MaybeParallel(t)
rr, err := Run(t exec.CommandContext(ctx, Target(), "-p", profile, "ssh", "pgrep", "buildkitd"))
rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "ssh", "pgrep", "buildkitd"))
if err == nil {
t.Errorf("buildkitd process is running, should not be running until `minikube image build` is ran")
}