diff --git a/tests/macros/test_refresh_dir.py b/tests/macros/test_refresh_dir.py index b861cf67..4b550a22 100644 --- a/tests/macros/test_refresh_dir.py +++ b/tests/macros/test_refresh_dir.py @@ -2,7 +2,6 @@ # Licensed under the GPL-3.0 License. # Created for TagStudio: https://github.com/CyanVoxel/TagStudio -import shutil from pathlib import Path from tempfile import TemporaryDirectory @@ -33,9 +32,7 @@ def test_refresh_new_files(library: Library, exclude_mode: bool): @pytest.mark.parametrize("library", [TemporaryDirectory()], indirect=True) -def test_refresh_multi_byte_filenames_ripgrep(library: Library): - assert shutil.which("rg") is not None - +def test_refresh_multi_byte_filenames(library: Library): library_dir = unwrap(library.library_dir) # Given registry = RefreshTracker(library=library)