We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b607f34 commit cd0f114Copy full SHA for cd0f114
regression/storage.py
@@ -267,6 +267,10 @@ def test_second_level(self):
267
('parent/child/grand/', 'parent/child/other/'))
268
269
def test_third_level(self):
270
+ # Pseudo-hierarchy can be arbitrarily deep, subject to the limit
271
+ # of 1024 characters in the UTF-8 encoded name:
272
+ # https://cloud.google.com/storage/docs/bucketnaming#objectnames
273
+ # Exercise a layer deeper to illustrate this.
274
iterator = self.bucket.iterator(delimiter='/',
275
prefix='parent/child/grand/')
276
response = iterator.get_next_page_response()
0 commit comments