From c4220105977b4236ad345340fa8d3f8678d882a2 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 11 Jun 2017 13:45:06 +0200 Subject: [PATCH] s3: Fix test --- src/restic/backend/location/location_test.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/restic/backend/location/location_test.go b/src/restic/backend/location/location_test.go index 09e45cecd..0f07bf412 100644 --- a/src/restic/backend/location/location_test.go +++ b/src/restic/backend/location/location_test.go @@ -123,7 +123,7 @@ var parseTests = []struct { Endpoint: "eu-central-1", Bucket: "bucketname", Prefix: "restic", - Connections: 20, + Connections: 5, }, }, }, @@ -134,7 +134,7 @@ var parseTests = []struct { Endpoint: "hostname.foo", Bucket: "bucketname", Prefix: "restic", - Connections: 20, + Connections: 5, }, }, }, @@ -145,7 +145,7 @@ var parseTests = []struct { Endpoint: "hostname.foo", Bucket: "bucketname", Prefix: "prefix/directory", - Connections: 20, + Connections: 5, }, }, }, @@ -156,7 +156,7 @@ var parseTests = []struct { Endpoint: "eu-central-1", Bucket: "repo", Prefix: "restic", - Connections: 20, + Connections: 5, }, }, }, @@ -167,7 +167,7 @@ var parseTests = []struct { Endpoint: "eu-central-1", Bucket: "repo", Prefix: "prefix/directory", - Connections: 20, + Connections: 5, }, }, }, @@ -178,7 +178,7 @@ var parseTests = []struct { Endpoint: "hostname.foo", Bucket: "repo", Prefix: "restic", - Connections: 20, + Connections: 5, }, }, }, @@ -189,7 +189,7 @@ var parseTests = []struct { Endpoint: "hostname.foo", Bucket: "repo", Prefix: "prefix/directory", - Connections: 20, + Connections: 5, }, }, }, @@ -201,7 +201,7 @@ var parseTests = []struct { Bucket: "repo", Prefix: "restic", UseHTTP: true, - Connections: 20, + Connections: 5, }, }, },