Error handling: Model-level validations, proper error responses. (fixed typo)

This commit is contained in:
Shawn Falkner-Horine 2014-08-25 15:14:45 -07:00
parent c97417d8e7
commit 5b56e89b60

View File

@ -89,7 +89,7 @@ def test_vpc_peering_connections_delete():
with assert_raises(EC2ResponseError) as cm:
conn.delete_vpc_peering_connection("pcx-1234abcd")
cm.exception.code.should.equal('InvalidVPCPeeringConnectionId.NotFound')
cm.exception.code.should.equal('InvalidVpcPeeringConnectionId.NotFound')
cm.exception.status.should.equal(400)
cm.exception.request_id.should_not.be.none