diff --git a/pandas/tests/io/parser/test_network.py b/pandas/tests/io/parser/test_network.py index cfa60248605ad..01f427ac771c1 100644 --- a/pandas/tests/io/parser/test_network.py +++ b/pandas/tests/io/parser/test_network.py @@ -179,14 +179,14 @@ def test_s3_fails(self): read_csv('s3://cant_get_it/') @tm.network - def boto3_client_s3(self): + def test_boto3_client_s3(self): # see gh-16135 # boto3 is a dependency of s3fs import boto3 client = boto3.client("s3") - key = "/tips.csv" + key = "tips.csv" bucket = "pandas-test" s3_object = client.get_object(Bucket=bucket, Key=key)