# HG changeset patch # User Elouan Martinet <elouan.martinet@logilab.fr> # Date 1607535114 -3600 # Wed Dec 09 18:31:54 2020 +0100 # Node ID 2736ca768ad610ca1eaf655c62dd7dc9ba6e3cb2 # Parent 013754d1c3cbe00856482d3859fe6e554929ca62 [testing] Fix moto call diff --git a/cubicweb_s3storage/testing.py b/cubicweb_s3storage/testing.py --- a/cubicweb_s3storage/testing.py +++ b/cubicweb_s3storage/testing.py @@ -10,7 +10,7 @@ def setUp(self): s3_mock = mock_s3() s3_mock.start() - resource = boto3.resource('s3', region_name='somewhere') + resource = boto3.resource('s3', region_name='us-east-1') self.s3_bucket = resource.create_bucket(Bucket=self.s3_bucket) patched_storage_s3_client = patch( 'cubicweb_s3storage.storages.S3Storage._s3_client',