You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Refactor existing integration tests in `test_permissions.py` to improve clarity and structure.
- Introduce a new class `TestDeletePermissions` to cover various scenarios for deleting permissions across entities.
- Implement unit tests for asynchronous permission deletion in `unit_test_permissions_async.py`, ensuring proper handling of errors and entity types.
- Create a new unit test file `unit_test_permissions.py` to test synchronous permission deletion methods.
- Ensure comprehensive coverage for edge cases, including invalid entity types and recursive deletion behavior.
Copy file name to clipboardExpand all lines: synapseclient/client.py
+38-8Lines changed: 38 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -2725,7 +2725,7 @@ def getChildren(
2725
2725
2726
2726
Arguments:
2727
2727
parent: An id or an object of a Synapse container or None to retrieve all projects
2728
-
includeTypes: Must be a list of entity types (ie. ["folder","file"]) which can be found [here](http://docs.synapse.org/rest/org/sagebionetworks/repo/model/EntityType.html)
2728
+
includeTypes: Must be a list of entity types (ie. ["folder","file"]) which can be found [here](https://rest-docs.synapse.org/rest/org/sagebionetworks/repo/model/EntityType.html)
2729
2729
sortBy: How results should be sorted. Can be NAME, or CREATED_ON
2730
2730
sortDirection: The direction of the result sort. Can be ASC, or DESC
0 commit comments