mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
fix test by changing patch
This commit is contained in:
parent
4ab1bb4df4
commit
73dc8f2bc7
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue