From 5b56e89b60884737b9baeb1e183d521970bb357d Mon Sep 17 00:00:00 2001 From: Shawn Falkner-Horine Date: Mon, 25 Aug 2014 15:14:45 -0700 Subject: [PATCH] Error handling: Model-level validations, proper error responses. (fixed typo) --- tests/test_ec2/test_vpc_peering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ec2/test_vpc_peering.py b/tests/test_ec2/test_vpc_peering.py index 422174e88..d67402ef5 100644 --- a/tests/test_ec2/test_vpc_peering.py +++ b/tests/test_ec2/test_vpc_peering.py @@ -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