From c8dcf194c7a5264ed6d9161d5807e9da972cab4c Mon Sep 17 00:00:00 2001 From: Kazato Sugimoto Date: Tue, 1 Aug 2017 09:48:39 +0900 Subject: [PATCH] Fix test for boto3 (and it fails) --- pandas/tests/io/parser/test_network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)