From d257ff2a94233830657abf20a4c31414add8a879 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Thu, 4 Feb 2021 16:22:27 -0800 Subject: [PATCH] remove debugging comments --- test/integration/load_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/load_test.go b/test/integration/load_test.go index a3322d2ef2..8d49cceaed 100644 --- a/test/integration/load_test.go +++ b/test/integration/load_test.go @@ -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...))