Skip to content

Commit 9b64d26

Browse files
Lint and comment fix
- Added missing line requested by lint - Clarified the comment by removing unnecessary section
1 parent 88bd3ca commit 9b64d26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit/bucket/test_bucket.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2177,12 +2177,13 @@ def test_file_info_4(self):
21772177

21782178
# Listing where every other response returns no entries and pointer to the next file
21792179

2180+
21802181
class EmptyListBucketSimulator(BucketSimulator):
21812182
def __init__(self, *args, **kwargs):
21822183
super().__init__(*args, **kwargs)
21832184
# Whenever we receive a list request, if it's the first time
21842185
# for this particular ``start_file_name``, we'll return
2185-
# an empty response pointing to the same file as the next one.
2186+
# an empty response pointing to the same file.
21862187
self.last_queried_file = None
21872188

21882189
def list_file_versions(

0 commit comments

Comments
 (0)