-
Notifications
You must be signed in to change notification settings - Fork 1.1k
PYTHON-4928 Convert CSFLE spec tests to unified test format #2520
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
Conversation
test/asynchronous/unified_format.py
Outdated
| async def _collectionOperation_assertCollectionExists(self, target, **kwargs): | ||
| database_name = kwargs["database_name"] | ||
| collection_name = kwargs["collection_name"] | ||
| collection_name_list = list( |
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.
list_collection_names already returns a list.
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.
Done
test/asynchronous/unified_format.py
Outdated
| async def _databaseOperation_assertCollectionExists(self, target, **kwargs): | ||
| database_name = kwargs["database_name"] | ||
| collection_name = kwargs["collection_name"] | ||
| collection_name_list = list( |
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.
list_collection_names already returns a list.
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.
Done
|
Had to update another case sensitivity issue. |
No description provided.