Skip to content

Commit d262e56

Browse files
committed
resolve ut errors and update changelog version
1 parent 6620496 commit d262e56

3 files changed

Lines changed: 10 additions & 0 deletions

File tree

docs/source/UserGuides/Miscellaneous/Changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
2.20.20
5+
-------
6+
7+
Related issues and pull requests on GitHub: `#316 <https://github.com/ctera/ctera-python-sdk/pull/316>`_,
8+
`#317 <https://github.com/ctera/ctera-python-sdk/pull/317>`_
9+
`#318 <https://github.com/ctera/ctera-python-sdk/pull/318>`_
10+
11+
412
Improvements
513
^^^^^^^^^^^^
614

tests/ut/core/admin/test_copy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def test_copy_no_wait(self):
2626
def _get_expected_copy_params(self, src, dst):
2727
o = Object()
2828
o._classname = 'ActionResourcesParam' # pylint: disable=protected-access
29+
o.startFrom = None
2930
src_dst_obj = Object()
3031
src_dst_obj._classname = 'SrcDstParam' # pylint: disable=protected-access
3132
src_path = self._get_object_path(src)

tests/ut/core/user/base_user.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def _create_action_resource_param(self, sources, destinations=None):
2626
action_resource_param = Object()
2727
action_resource_param._classname = 'ActionResourcesParam' # pylint: disable=protected-access
2828
action_resource_param.urls = []
29+
action_resource_param.startFrom = None
2930
for idx, source in enumerate(sources):
3031
param = Object()
3132
param._classname = 'SrcDstParam' # pylint: disable=protected-access

0 commit comments

Comments
 (0)