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 6e78923 commit 56db8c2Copy full SHA for 56db8c2
tests/test_util.py
@@ -174,7 +174,6 @@ def test_resolve_install_tool_already_installed_correct_version():
174
175
with (
176
patch("shutil.which", return_value=mock_path),
177
- patch("cpp_linter_hooks.util._get_runtime_version", return_value="20.1.7"),
178
):
179
result = _resolve_install("clang-format", "20.1.7")
180
assert result == Path(mock_path)
@@ -187,7 +186,6 @@ def test_resolve_install_tool_version_mismatch():
187
186
188
189
190
- patch("cpp_linter_hooks.util._get_runtime_version", return_value="18.1.8"),
191
patch(
192
"cpp_linter_hooks.util._install_tool", return_value=Path(mock_path)
193
) as mock_install,
0 commit comments