We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c30ae0f commit 5558197Copy full SHA for 5558197
services/director-v2/tests/unit/with_dbs/test_utils_dask.py
@@ -443,7 +443,7 @@ async def test_clean_task_output_and_log_files_if_invalid(
443
]
444
445
def _add_is_directory(entry: mock._Call) -> mock._Call:
446
- new_kwargs: dict[str, Any] = deepcopy(entry.kwargs)
+ new_kwargs = dict(deepcopy(entry.kwargs))
447
new_kwargs["is_directory"] = False
448
return mock.call(**new_kwargs)
449
0 commit comments