We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0a43c7 commit 8ddfa3eCopy full SHA for 8ddfa3e
2 files changed
test/integration/conftest.py
@@ -234,7 +234,7 @@ def bucket_manager(
234
# showing account_id in the logs is safe; so we explicitly prevent it from being redacted
235
summary_notes.append(f'B2 Account ID: {application_key_id[:1]!r}{application_key_id[1:]!r}')
236
summary_notes.append(
237
- f'Buckets names used during this tests: {bucket_manager.bucket_name_log!r}'
+ f'Buckets names used during this tests: {bucket_manager.bucket_name_mapping!r}'
238
)
239
240
test/integration/persistent_bucket.py
@@ -57,8 +57,6 @@ def get_or_create_persistent_bucket(bucket_manager: BucketManager) -> Bucket:
57
}
58
],
59
60
- # add the new bucket name to the list of bucket names
61
- bucket_manager.bucket_name_log.append(bucket_name)
62
return bucket
63
64
0 commit comments