Skip to content

Commit c8dcf19

Browse files
committed
Fix test for boto3 (and it fails)
1 parent f2b0bdc commit c8dcf19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/test_network.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ def test_s3_fails(self):
179179
read_csv('s3://cant_get_it/')
180180

181181
@tm.network
182-
def boto3_client_s3(self):
182+
def test_boto3_client_s3(self):
183183
# see gh-16135
184184

185185
# boto3 is a dependency of s3fs
186186
import boto3
187187
client = boto3.client("s3")
188188

189-
key = "/tips.csv"
189+
key = "tips.csv"
190190
bucket = "pandas-test"
191191
s3_object = client.get_object(Bucket=bucket, Key=key)
192192

0 commit comments

Comments
 (0)