From 74ef65daac4282d4b9aba7ddf856ffe17a37949d Mon Sep 17 00:00:00 2001 From: "Frederick F. Kautz IV" Date: Tue, 27 Jan 2015 12:02:08 -0800 Subject: [PATCH] Removing log from fs_test.go --- pkg/storage/fs/fs_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/storage/fs/fs_test.go b/pkg/storage/fs/fs_test.go index 228b53640..0e22f086c 100644 --- a/pkg/storage/fs/fs_test.go +++ b/pkg/storage/fs/fs_test.go @@ -2,7 +2,6 @@ package fs import ( "io/ioutil" - "log" "os" "testing" @@ -21,20 +20,16 @@ func (s *MySuite) TestAPISuite(c *C) { var storageList []string create := func() mstorage.Storage { path, err := ioutil.TempDir(os.TempDir(), "minio-fs-") - log.Println(path) c.Check(err, IsNil) storageList = append(storageList, path) _, _, store := Start(path) return store } - log.Println("FOO") mstorage.APITestSuite(c, create) - log.Println("BAR") removeRoots(c, storageList) } func removeRoots(c *C, roots []string) { - log.Println("REMOVING ROOTS: ", roots) for _, root := range roots { err := os.RemoveAll(root) c.Check(err, IsNil)