From 224b54c367c51eebf73249bdd4bcb280defef192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 28 Mar 2017 16:40:28 +0200 Subject: [PATCH] =?UTF-8?q?Uncomment=20a=20=E2=80=9Cdefer=20os.RemoveAll(t?= =?UTF-8?q?mpDir)=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are running the integration tests in a container, so this does not _really_ matter, at least right now—mostly a matter of principle. --- integration/copy_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/copy_test.go b/integration/copy_test.go index 8b13837c..f4101ab6 100644 --- a/integration/copy_test.go +++ b/integration/copy_test.go @@ -394,7 +394,7 @@ func (s *CopySuite) TestCopyDockerSigstore(c *check.C) { tmpDir, err := ioutil.TempDir("", "signatures-sigstore") c.Assert(err, check.IsNil) - //defer os.RemoveAll(tmpDir) + defer os.RemoveAll(tmpDir) copyDest := filepath.Join(tmpDir, "dest") err = os.Mkdir(copyDest, 0755) c.Assert(err, check.IsNil)