mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
fix test by changing patch
This commit is contained in:
parent
f4691c85e9
commit
c991b14e7d
3 changed files with 4 additions and 4 deletions
|
|
@ -72,4 +72,4 @@ d93ddf8dd43e4f9ed072a03829e287c78d2570a2
|
|||
# Moved plugin docs Further Reading chapter
|
||||
33f1a5d0bef8ca08be79ee7a0d02a018d502680d
|
||||
# Moved art.py utility module from beets into beetsplug
|
||||
a7b69e50108eebef8ce92c015f18a42f8bf7276f
|
||||
28aee0fde463f1e18dfdba1994e2bdb80833722f
|
||||
|
|
@ -35,8 +35,8 @@ Other changes:
|
|||
match :bug:`6020`
|
||||
- :doc:`guides/tagger`: Section on no matching release found, related to
|
||||
possibly disabled musicbrainz plugin :bug:`6020`
|
||||
- Moved ``art.py`` utility module from ``beets`` into ``beetsplug`` namespace as it
|
||||
is not used in the core beets codebase. It can now be found in
|
||||
- Moved ``art.py`` utility module from ``beets`` into ``beetsplug`` namespace as
|
||||
it is not used in the core beets codebase. It can now be found in
|
||||
``beetsplug._utils``.
|
||||
- :class:`beets.metadata_plugin.MetadataSourcePlugin`: Remove discogs specific
|
||||
disambiguation stripping
|
||||
|
|
|
|||
|
|
@ -284,7 +284,7 @@ class DummyArtResizer(ArtResizer):
|
|||
|
||||
|
||||
@patch("beets.util.artresizer.subprocess")
|
||||
@patch("beets.art.extract")
|
||||
@patch("beetsplug._utils.art.extract")
|
||||
class ArtSimilarityTest(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.item = _common.item()
|
||||
|
|
|
|||
Loading…
Reference in a new issue