Skip to content

Commit

Permalink
updated to testserver .38 (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft authored May 20, 2020
1 parent 47a75cd commit feef476
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"devDependencies": {
"@autorest/autorest": "^3.0.0",
"@azure-tools/extension": "^3.0.249",
"@microsoft.azure/autorest.testserver": "^2.10.37"
"@microsoft.azure/autorest.testserver": "^2.10.38"
},
"files": [
"autorest/**/*.py",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,10 @@ async def put_utc_max_date_time7_digits(
datetime_body: datetime.datetime,
**kwargs
) -> None:
"""This is against the recommendation that asks for 3 digits, but allow to test what happens in that scenario.
"""Put max datetime value 9999-12-31T23:59:59.9999999Z.
Put max datetime value 9999-12-31T23:59:59.9999999Z.
This is against the recommendation that asks for 3 digits, but allow to test what happens in
that scenario.
:param datetime_body:
:type datetime_body: ~datetime.datetime
Expand Down Expand Up @@ -410,9 +411,10 @@ async def get_utc_uppercase_max_date_time7_digits(
self,
**kwargs
) -> datetime.datetime:
"""This is against the recommendation that asks for 3 digits, but allow to test what happens in that scenario.
"""Get max datetime value 9999-12-31T23:59:59.9999999Z.
Get max datetime value 9999-12-31T23:59:59.9999999Z.
This is against the recommendation that asks for 3 digits, but allow to test what happens in
that scenario.
:keyword callable cls: A custom type or function that will be passed the direct response
:return: datetime, or the result of cls(response)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,10 @@ def put_utc_max_date_time7_digits(
**kwargs # type: Any
):
# type: (...) -> None
"""This is against the recommendation that asks for 3 digits, but allow to test what happens in that scenario.
"""Put max datetime value 9999-12-31T23:59:59.9999999Z.
Put max datetime value 9999-12-31T23:59:59.9999999Z.
This is against the recommendation that asks for 3 digits, but allow to test what happens in
that scenario.
:param datetime_body:
:type datetime_body: ~datetime.datetime
Expand Down Expand Up @@ -423,9 +424,10 @@ def get_utc_uppercase_max_date_time7_digits(
**kwargs # type: Any
):
# type: (...) -> datetime.datetime
"""This is against the recommendation that asks for 3 digits, but allow to test what happens in that scenario.
"""Get max datetime value 9999-12-31T23:59:59.9999999Z.
Get max datetime value 9999-12-31T23:59:59.9999999Z.
This is against the recommendation that asks for 3 digits, but allow to test what happens in
that scenario.
:keyword callable cls: A custom type or function that will be passed the direct response
:return: datetime, or the result of cls(response)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,9 +586,9 @@ async def string_url_non_encoded(
self,
**kwargs
) -> None:
"""https://tools.ietf.org/html/rfc3986#appendix-A 'path' accept any 'pchar' not encoded.
"""Get 'begin!*'();:@&=+$,end.
Get 'begin!*'();:@&=+$,end.
https://tools.ietf.org/html/rfc3986#appendix-A 'path' accept any 'pchar' not encoded.
:keyword callable cls: A custom type or function that will be passed the direct response
:return: None, or the result of cls(response)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -603,9 +603,9 @@ def string_url_non_encoded(
**kwargs # type: Any
):
# type: (...) -> None
"""https://tools.ietf.org/html/rfc3986#appendix-A 'path' accept any 'pchar' not encoded.
"""Get 'begin!*'();:@&=+$,end.
Get 'begin!*'();:@&=+$,end.
https://tools.ietf.org/html/rfc3986#appendix-A 'path' accept any 'pchar' not encoded.
:keyword callable cls: A custom type or function that will be passed the direct response
:return: None, or the result of cls(response)
Expand Down

0 comments on commit feef476

Please sign in to comment.