From 1453d48a715b6540d2180318d8fa1fc936d29409 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 10 Aug 2021 18:30:25 +0000 Subject: [PATCH] chore(codegen): enable protocol tests which depend on smithy 1.10.x --- .../smithy/aws/typescript/codegen/AwsProtocolUtils.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java index 72b49430d650..444c50367669 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java +++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java @@ -293,12 +293,6 @@ private static boolean filterProtocolTests( if (testCase.getId().equals("QueryCustomizedError")) { return true; } - //TODO: enable with Smithy 1.10 - if ((testCase.getId().equals("RestJsonAllQueryStringTypes") - || testCase.getId().equals("RestJsonQueryStringEscaping")) - && settings.generateServerSdk()) { - return true; - } // TODO: follow-up with smithy on whether whitespace strings should be trimmed. if (testCase.getId().equals("SimpleScalarPropertiesPureWhiteSpace")) { return true;