tests: Simplify test bucket name
We already prefix everything with "s3api-test-"; there's no reason to double up the "test-" part. Change-Id: I02efba463a8263ca44be511c025c6c6bfbc57334
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -261,7 +261,7 @@ class BaseS3TestCase(BaseS3Mixin, unittest.TestCase):
class BaseS3TestCaseWithBucket(BaseS3Mixin, unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.bucket_name = cls.create_name('test-bucket')
cls.bucket_name = cls.create_name('bucket')
client = cls.get_s3_client(1)
client.create_bucket(Bucket=cls.bucket_name)
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.