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 b317c5d commit bd8ae54Copy full SHA for bd8ae54
tests/unit/test_actions.py
@@ -166,8 +166,8 @@ def test_excludes_dependencies_from_source(
166
dependency_manager.IGNORE_LIST if mock_dependencies is None else mock_dependencies
167
)
168
patched_list_dir.side_effect = [source_files, artifact_files]
169
- source_destinations = TestDependencyManager._convert_strings_to_paths(
170
- list(dependency_manager.yield_source_dest())
+ source_destinations = list(
+ TestDependencyManager._convert_strings_to_paths(list(dependency_manager.yield_source_dest()))
171
172
expected_paths = TestDependencyManager._convert_strings_to_paths(expected)
173
for expected_source_dest in expected_paths:
0 commit comments