From 26ff08f366a8556a6d69a83442f2efba19f9642b Mon Sep 17 00:00:00 2001 From: ysaito1001 Date: Fri, 28 Jun 2024 11:26:22 -0500 Subject: [PATCH] Fix expected timestamp value restJson1 defaults test This commit updates the expected `defaultTimestamp` in a restJson1 defaults test to 2. The value 1 may have been incorrectly copied from the corresponding test in Rails Json where the timestamp format is httpdate instead of epoch seconds. --- smithy-aws-protocol-tests/model/restJson1/defaults.smithy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smithy-aws-protocol-tests/model/restJson1/defaults.smithy b/smithy-aws-protocol-tests/model/restJson1/defaults.smithy index f1436329350..2ceb1d20cc2 100644 --- a/smithy-aws-protocol-tests/model/restJson1/defaults.smithy +++ b/smithy-aws-protocol-tests/model/restJson1/defaults.smithy @@ -323,7 +323,7 @@ apply OperationWithDefaults @httpResponseTests([ defaultDocumentBoolean: false defaultDocumentList: ["b"] defaultNullDocument: "notNull" - defaultTimestamp: 1 + defaultTimestamp: 2 defaultBlob: "hi" defaultByte: 2 defaultShort: 2 @@ -457,4 +457,4 @@ enum TestEnum { intEnum TestIntEnum { ONE = 1 TWO = 2 -} \ No newline at end of file +}