location: Fix test

This commit is contained in:
Alexander Neumann 2015-12-28 18:30:42 +01:00
parent 1ad5c3813c
commit 2b10791df2
1 changed files with 4 additions and 4 deletions

View File

@ -46,19 +46,19 @@ var parseTests = []struct {
{"s3://eu-central-1/bucketname", Location{Scheme: "s3", {"s3://eu-central-1/bucketname", Location{Scheme: "s3",
Config: s3.Config{ Config: s3.Config{
Host: "eu-central-1", Region: "eu-central-1",
Bucket: "bucketname", Bucket: "bucketname",
}}, }},
}, },
{"s3://hostname.foo/bucketname", Location{Scheme: "s3", {"s3://hostname.foo/bucketname", Location{Scheme: "s3",
Config: s3.Config{ Config: s3.Config{
Host: "hostname.foo", Region: "hostname.foo",
Bucket: "bucketname", Bucket: "bucketname",
}}, }},
}, },
{"s3:hostname.foo:repo", Location{Scheme: "s3", {"s3:https://hostname.foo/repo", Location{Scheme: "s3",
Config: s3.Config{ Config: s3.Config{
Host: "hostname.foo", URL: "https://hostname.foo",
Bucket: "repo", Bucket: "repo",
}}, }},
}, },