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 cecba242e1b29..0e58c5d94e019 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 @@ -316,13 +316,6 @@ private static boolean filterProtocolTests( return true; } - // TODO: Remove when this test case is fixed upstream. - // https://github.com/smithy-lang/smithy/pull/2167 - if (settings.generateServerSdk() - && testCase.getId().equals("RestJsonZeroAndFalseQueryValues")) { - return true; - } - // TODO: remove when there's a decision on separator to use // https://github.com/awslabs/smithy/issues/1014 if (testCase.getId().equals("RestJsonInputAndOutputWithQuotedStringHeaders")) { diff --git a/private/aws-restjson-server/test/functional/restjson1.spec.ts b/private/aws-restjson-server/test/functional/restjson1.spec.ts index 456498c2d18b4..0e49a469eefab 100644 --- a/private/aws-restjson-server/test/functional/restjson1.spec.ts +++ b/private/aws-restjson-server/test/functional/restjson1.spec.ts @@ -795,7 +795,7 @@ it("RestJsonSupportsNegativeInfinityFloatQueryValues:ServerRequest", async () => /** * Query values of 0 and false are serialized */ -it.skip("RestJsonZeroAndFalseQueryValues:ServerRequest", async () => { +it("RestJsonZeroAndFalseQueryValues:ServerRequest", async () => { const testFunction = jest.fn(); testFunction.mockReturnValue(Promise.resolve({})); const testService: Partial> = {