forked from TrueCloudLab/restic
location: Fix test
This commit is contained in:
parent
1ad5c3813c
commit
2b10791df2
1 changed files with 4 additions and 4 deletions
|
@ -46,19 +46,19 @@ var parseTests = []struct {
|
|||
|
||||
{"s3://eu-central-1/bucketname", Location{Scheme: "s3",
|
||||
Config: s3.Config{
|
||||
Host: "eu-central-1",
|
||||
Region: "eu-central-1",
|
||||
Bucket: "bucketname",
|
||||
}},
|
||||
},
|
||||
{"s3://hostname.foo/bucketname", Location{Scheme: "s3",
|
||||
Config: s3.Config{
|
||||
Host: "hostname.foo",
|
||||
Region: "hostname.foo",
|
||||
Bucket: "bucketname",
|
||||
}},
|
||||
},
|
||||
{"s3:hostname.foo:repo", Location{Scheme: "s3",
|
||||
{"s3:https://hostname.foo/repo", Location{Scheme: "s3",
|
||||
Config: s3.Config{
|
||||
Host: "hostname.foo",
|
||||
URL: "https://hostname.foo",
|
||||
Bucket: "repo",
|
||||
}},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue