From dca19e595afbe219b9a72440d9ae0d325f2a7853 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Fri, 10 Jun 2011 11:53:37 -0700 Subject: [PATCH] Remove flawed test. It never tested 3-character bucket names; it was prefixed by the 30-character uniqueness mechanism. I highly doubt 3-letter bucket names will stay available for very long anyway, so if this is wanted back, it'll need to avoid the prefix, do it's own cleanup, and be flagged as not to be executed on AWS, DreamHost Objects, or any production system; it'll only work on local dev instances with a clean slate. --- test_s3.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test_s3.py b/test_s3.py index 248c1b4..d28fe3f 100644 --- a/test_s3.py +++ b/test_s3.py @@ -337,9 +337,6 @@ def test_bucket_create_naming_bad_short_one(): def test_bucket_create_naming_bad_short_two(): check_bad_bucket_name('aa') -def test_bucket_create_naming_good_short_3(): - check_good_bucket_name('aaa') - def test_bucket_create_naming_bad_long(): check_bad_bucket_name(256*'a') check_bad_bucket_name(280*'a')