Skip to content

Commit 28e42f5

Browse files
committed
Merge pull request #694 from dhermes/regression-remove-batch-gets
Removing use of non-batchable request in storage regression.
2 parents 83f92cc + 043dfc3 commit 28e42f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

regression/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def setUp(self):
5555
def tearDown(self):
5656
with Batch(CONNECTION) as batch:
5757
for bucket_name in self.case_buckets_to_delete:
58-
batch.get_bucket(bucket_name).delete()
58+
storage.Bucket(connection=batch, name=bucket_name).delete()
5959

6060
def test_create_bucket(self):
6161
new_bucket_name = 'a-new-bucket'

0 commit comments

Comments
 (0)