@@ -152,7 +152,7 @@ def test_parse_public_s3_bucket_chunked(self, test_s3_resource):
152
152
assert isinstance (df , DataFrame )
153
153
assert not df .empty
154
154
true_df = local_tips .iloc [
155
- chunksize * i_chunk : chunksize * (i_chunk + 1 )]
155
+ chunksize * i_chunk : chunksize * (i_chunk + 1 )]
156
156
tm .assert_frame_equal (true_df , df )
157
157
158
158
def test_parse_public_s3_bucket_chunked_python (self , test_s3_resource ):
@@ -170,7 +170,7 @@ def test_parse_public_s3_bucket_chunked_python(self, test_s3_resource):
170
170
assert isinstance (df , DataFrame )
171
171
assert not df .empty
172
172
true_df = local_tips .iloc [
173
- chunksize * i_chunk : chunksize * (i_chunk + 1 )]
173
+ chunksize * i_chunk : chunksize * (i_chunk + 1 )]
174
174
tm .assert_frame_equal (true_df , df )
175
175
176
176
def test_parse_public_s3_bucket_python (self , test_s3_resource ):
@@ -209,7 +209,9 @@ def test_s3_fails(self, test_s3_resource):
209
209
with pytest .raises (IOError ):
210
210
read_csv ('s3://cant_get_it/' )
211
211
212
- def test_read_csv_handles_boto_s3_object (self , test_s3_resource , tips_file ):
212
+ def test_read_csv_handles_boto_s3_object (self ,
213
+ test_s3_resource ,
214
+ tips_file ):
213
215
# see gh-16135
214
216
215
217
s3_object = test_s3_resource .meta .client .get_object (
0 commit comments