Merge pull request #421 from fkautz/pr_out_minor_modification_for_creating_temp_dir_in_api_test

This commit is contained in:
Frederick F. Kautz IV 2015-04-01 12:07:46 -07:00
commit 646ce59bc5
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ var _ = Suite(&MySuite{
var _ = Suite(&MySuite{
initDriver: func() (drivers.Driver, string) {
root, _ := ioutil.TempDir(os.TempDir(), "minio-api-fs")
root, _ := ioutil.TempDir(os.TempDir(), "minio-api")
_, _, driver := file.Start(root)
return driver, root
},