Removed unwanted whitespace

This commit is contained in:
Daniel Hepper 2016-04-14 14:48:57 +02:00
parent ce3fdaa012
commit 35a60fbf49
2 changed files with 2 additions and 3 deletions

View File

@ -459,9 +459,7 @@ DESCRIBE_LOAD_BALANCERS_TEMPLATE = """<DescribeLoadBalancersResponse xmlns="http
</BackendServerDescriptions>
<Subnets>
{% for subnet in load_balancer.subnets %}
<member>
{{ subnet }}
</member>
<member>{{ subnet }}</member>
{% endfor %}
</Subnets>
</member>

View File

@ -742,5 +742,6 @@ def test_subnets():
lb = client.describe_load_balancers()['LoadBalancerDescriptions'][0]
lb.should.have.key('Subnets').which.should.have.length_of(1)
lb['Subnets'][0].should.equal(subnet.id)
lb.should.have.key('VPCId').which.should.equal(vpc.id)