Skip to content

Commit cdfcd3d

Browse files
Fix invalid error assertion in VPC integration tests (#667)
1 parent fa417d5 commit cdfcd3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/models/vpc/test_vpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_fails_update_subnet_invalid_data(create_vpc_with_subnet):
105105
subnet.save()
106106

107107
assert excinfo.value.status == 400
108-
assert "Label must include only ASCII" in str(excinfo.value.json)
108+
assert "Must only use ASCII" in str(excinfo.value.json)
109109

110110

111111
def test_fails_create_subnet_with_invalid_ipv6_range(create_vpc):

0 commit comments

Comments
 (0)