remove debugging comments

pull/10366/head
Priya Wadhwa 2021-02-04 16:22:27 -08:00
parent f365fcc692
commit d257ff2a94
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ func TestImageLoad(t *testing.T) {
t.Skip("skipping on none driver")
}
profile := UniqueProfileName("load-image")
ctx, _ := context.WithTimeout(context.Background(), Minutes(5))
// defer CleanupWithLogs(t, profile, cancel)
ctx, cancel := context.WithTimeout(context.Background(), Minutes(5))
defer CleanupWithLogs(t, profile, cancel)
args := append([]string{"start", "-p", profile, "--memory=2000"}, StartArgs()...)
rr, err := Run(t, exec.CommandContext(ctx, Target(), args...))