diff --git a/aws/sdk/integration-tests/ec2/tests/paginators.rs b/aws/sdk/integration-tests/ec2/tests/paginators.rs index c820ac4270..aa6a995f4f 100644 --- a/aws/sdk/integration-tests/ec2/tests/paginators.rs +++ b/aws/sdk/integration-tests/ec2/tests/paginators.rs @@ -22,6 +22,7 @@ fn validate_query_string(expected: &str, actual: &str) { let expected = expected.split('&').collect::>(); let actual = actual.split('&').collect::>(); assert_eq!(expected, actual); + assert_eq!(expected.len(), actual.len()); } /// See https://github.com/awslabs/aws-sdk-rust/issues/391