Skip to content

Commit d404932

Browse files
committed
Fix escaping in malformed request test
In attempting to test rejection of a named timezone in a path parameter, [Europe/Paris], the slash was accidentally left unencoded, which turned it into a test of the URI matcher, instead of the timestamp deserializer.
1 parent 9895377 commit d404932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smithy-aws-protocol-tests/model/restJson1/malformedRequests/malformed-timestamp-path.smithy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ apply MalformedTimestampPathDefault @httpMalformedRequestTests([
113113
"1996-12-19T16Z",
114114
"1996-12-19T16",
115115
"1996-12-19 16%3A39%3A57Z",
116-
"2011-12-03T10%3A15%3A30%2B01%3A00%5BEurope/Paris%5D"]
116+
"2011-12-03T10%3A15%3A30%2B01%3A00%5BEurope%2FParis%5D"]
117117
},
118118
tags : ["timestamp"]
119119
},

0 commit comments

Comments
 (0)