Fix redshift test. Drop old boto version from testing.

This commit is contained in:
Steve Pulec 2014-11-23 17:59:38 -05:00
parent aceb30e530
commit 93bd852419
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@ python:
env:
matrix:
- BOTO_VERSION=2.34.0
- BOTO_VERSION=2.25.0
matrix:
include:
- python: "3.3"

View File

@ -18,6 +18,6 @@ def test_describe_clusters():
res = test_client.get('/?Action=DescribeClusters')
json_data = json.loads(res.data)
json_data = json.loads(res.data.decode("utf-8"))
clusters = json_data['DescribeClustersResponse']['DescribeClustersResult']['Clusters']
list(clusters).should.equal([])