Skip to content

Commit

Permalink
Fix subnet CIDR range text (#11)
Browse files Browse the repository at this point in the history
Signed-off-by: Mahendra Korepu <[email protected]>
  • Loading branch information
mahendra-rk authored Aug 11, 2021
1 parent 223227b commit 40e2091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdpctl/validation/infra/validate_aws_subnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def aws_public_subnets_route_validation(
@pytest.mark.infra
@pytest.mark.dependency(depends=["aws_public_subnets_validation"])
def aws_public_subnets_range_validation() -> None:
"""Public subnets have adequate IP range.""" # noqa: D401,E501
"""Public subnets have adequate CIDR range.""" # noqa: D401,E501
try:
subnets_wo_valid_range = []
for subnet in subnets_data["public_subnets"]:
Expand Down Expand Up @@ -410,7 +410,7 @@ def aws_private_subnets_route_validation(
@pytest.mark.infra
@pytest.mark.dependency(depends=["aws_private_subnets_validation"])
def aws_private_subnets_range_validation() -> None:
"""Private subnets have adequate IP range.""" # noqa: D401,E501
"""Private subnets have adequate CIDR range.""" # noqa: D401,E501
try:
subnets_wo_valid_range = []
for subnet in subnets_data["private_subnets"]:
Expand Down

0 comments on commit 40e2091

Please sign in to comment.