Skip to content

Commit 56db8c2

Browse files
committed
fix: update test
1 parent 6e78923 commit 56db8c2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_util.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ def test_resolve_install_tool_already_installed_correct_version():
174174

175175
with (
176176
patch("shutil.which", return_value=mock_path),
177-
patch("cpp_linter_hooks.util._get_runtime_version", return_value="20.1.7"),
178177
):
179178
result = _resolve_install("clang-format", "20.1.7")
180179
assert result == Path(mock_path)
@@ -187,7 +186,6 @@ def test_resolve_install_tool_version_mismatch():
187186

188187
with (
189188
patch("shutil.which", return_value=mock_path),
190-
patch("cpp_linter_hooks.util._get_runtime_version", return_value="18.1.8"),
191189
patch(
192190
"cpp_linter_hooks.util._install_tool", return_value=Path(mock_path)
193191
) as mock_install,

0 commit comments

Comments
 (0)