Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong assertion of the test: test_buckets_list_ctime #4

Open
wants to merge 1 commit into
base: ceph-reef-cloudscale
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions s3tests_boto3/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -5151,13 +5151,17 @@ def test_buckets_list_ctime():
before = datetime.datetime.now(datetime.timezone.utc) - datetime.timedelta(days=1)

client = get_client()
buckets = []
for i in range(5):
client.create_bucket(Bucket=get_new_bucket_name())
name = get_new_bucket_name()
client.create_bucket(Bucket=name)
buckets.append(name)

response = client.list_buckets()
for bucket in response['Buckets']:
ctime = bucket['CreationDate']
assert before <= ctime, '%r > %r' % (before, ctime)
if bucket['Name'] in buckets:
ctime = bucket['CreationDate']
assert before <= ctime, '%r > %r' % (before, ctime)

@pytest.mark.fails_on_aws
def test_list_buckets_anonymous():
Expand Down