fix test by changing patch

This commit is contained in:
Sebastian Mohr 2025-09-16 00:18:04 +02:00
parent 4ab1bb4df4
commit 73dc8f2bc7
3 changed files with 4 additions and 4 deletions

View file

@ -72,4 +72,4 @@ d93ddf8dd43e4f9ed072a03829e287c78d2570a2
# Moved plugin docs Further Reading chapter # Moved plugin docs Further Reading chapter
33f1a5d0bef8ca08be79ee7a0d02a018d502680d 33f1a5d0bef8ca08be79ee7a0d02a018d502680d
# Moved art.py utility module from beets into beetsplug # Moved art.py utility module from beets into beetsplug
a7b69e50108eebef8ce92c015f18a42f8bf7276f 28aee0fde463f1e18dfdba1994e2bdb80833722f

View file

@ -29,8 +29,8 @@ Other changes:
match :bug:`6020` match :bug:`6020`
- :doc:`guides/tagger`: Section on no matching release found, related to - :doc:`guides/tagger`: Section on no matching release found, related to
possibly disabled musicbrainz plugin :bug:`6020` possibly disabled musicbrainz plugin :bug:`6020`
- Moved ``art.py`` utility module from ``beets`` into ``beetsplug`` namespace as it - Moved ``art.py`` utility module from ``beets`` into ``beetsplug`` namespace as
is not used in the core beets codebase. It can now be found in it is not used in the core beets codebase. It can now be found in
``beetsplug._utils``. ``beetsplug._utils``.
2.4.0 (September 13, 2025) 2.4.0 (September 13, 2025)

View file

@ -284,7 +284,7 @@ class DummyArtResizer(ArtResizer):
@patch("beets.util.artresizer.subprocess") @patch("beets.util.artresizer.subprocess")
@patch("beets.art.extract") @patch("beetsplug._utils.art.extract")
class ArtSimilarityTest(unittest.TestCase): class ArtSimilarityTest(unittest.TestCase):
def setUp(self): def setUp(self):
self.item = _common.item() self.item = _common.item()