Skip to content

Commit

Permalink
Fix test for boto3 (and it fails)
Browse files Browse the repository at this point in the history
  • Loading branch information
uiur committed Aug 1, 2017
1 parent f2b0bdc commit c8dcf19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/io/parser/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c8dcf19

Please sign in to comment.