1
0
mirror of https://github.com/restic/restic.git synced 2024-06-30 08:20:55 +02:00

Remove debug output for tests

This commit is contained in:
Alexander Neumann 2016-08-28 19:18:00 +02:00
parent db16702263
commit cdbdf74811

View File

@ -1,7 +1,6 @@
package sftp_test
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
@ -28,7 +27,6 @@ func createTempdir() error {
return err
}
fmt.Printf("created new test backend at %v\n", tempdir)
tempBackendDir = tempdir
return nil
}
@ -74,7 +72,6 @@ func init() {
return nil
}
fmt.Printf("removing test backend at %v\n", tempBackendDir)
err := os.RemoveAll(tempBackendDir)
tempBackendDir = ""
return err