Added Exception to for describe_container_instances to match aws api
This commit is contained in:
parent
31198c75b8
commit
017cbb52ca
2 changed files with 8 additions and 0 deletions
|
|
@ -889,6 +889,12 @@ def test_describe_container_instances():
|
|||
instance.keys().should.contain('runningTasksCount')
|
||||
instance.keys().should.contain('pendingTasksCount')
|
||||
|
||||
with assert_raises(ClientError) as e:
|
||||
ecs_client.describe_container_instances(
|
||||
cluster=test_cluster_name,
|
||||
containerInstances=[]
|
||||
)
|
||||
|
||||
|
||||
@mock_ec2
|
||||
@mock_ecs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue