Skip to content

Commit 566b9d3

Browse files
authored
chore(aws-protocoltests-restjson): enable RestJsonNoInputAndOutput (#3060)
1 parent 9396178 commit 566b9d3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,6 @@ private static boolean filterProtocolTests(
298298
if (testCase.getId().equals("QueryCustomizedError")) {
299299
return true;
300300
}
301-
if (testCase.getId().equals("RestJsonNoInputAndOutput")) {
302-
return true;
303-
}
304301
// TODO: Remove when server protocol tests are fixed in
305302
// https://github.com/aws/aws-sdk-js-v3/issues/3058
306303
// TODO: Move to filter specific to server protocol tests if added in

private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6161,7 +6161,7 @@ it("RestJsonNoInputAndNoOutput:Response", async () => {
61616161
* serialize any data in the payload, they should omit a payload
61626162
* altogether.
61636163
*/
6164-
it.skip("RestJsonNoInputAndOutput:Request", async () => {
6164+
it("RestJsonNoInputAndOutput:Request", async () => {
61656165
const client = new RestJsonProtocolClient({
61666166
...clientParams,
61676167
requestHandler: new RequestSerializationTestHandler(),

0 commit comments

Comments
 (0)