mirror of
https://github.com/octoleo/restic.git
synced 2025-01-11 10:18:10 +00:00
Fix s3 backend test
This commit is contained in:
parent
6d1552af51
commit
ed2a4ba1d5
@ -4,15 +4,14 @@ import (
|
||||
"testing"
|
||||
|
||||
bes3 "github.com/restic/restic/backend/s3"
|
||||
. "github.com/restic/restic/test"
|
||||
)
|
||||
|
||||
func setupS3Backend(t *testing.T) *bes3.S3Backend {
|
||||
return bes3.Open("play.minio.io:9000", "restictestbucket")
|
||||
}
|
||||
|
||||
func TestS3Backend(t *testing.T) {
|
||||
s := setupS3Backend(t)
|
||||
s, err := bes3.Open("play.minio.io:9000", "restictestbucket")
|
||||
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
testBackend(s, t)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user