-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tables] Test fixes #18075
[Tables] Test fixes #18075
Conversation
…into tables-test-fix
…into tables-test-fix
/azp run python - tables - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run python - tables - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -455,7 +455,7 @@ def list_entities( | |||
""" | |||
user_select = kwargs.pop("select", None) | |||
if user_select and not isinstance(user_select, str): | |||
user_select = ", ".join(user_select) | |||
user_select = ",".join(user_select) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the space because cosmos will keep the space there on the returned object, which makes the deserialized object have a parameter with a preceding space. ie. my_entity[' value']
instead of my_entity['value']
.
/azp run python - tables - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Hello @seankane-msft! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
[Go] Add batch tag 22/03/03 (Azure#18075)
[Go] Add batch tag 22/03/03 (Azure#18075)
[Go] Add batch tag 22/03/03 (Azure#18075)
Removes tests that are supported in tables but not cosmos.