Merge branch 'master' into patch-1

This commit is contained in:
seth-milojevic 2025-02-08 12:41:59 -05:00 committed by GitHub
commit 3dfb95eb69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 3 additions and 13 deletions

View file

@ -675,7 +675,7 @@ class ImportSessionFixture(ImportSession):
>>> importer.run()
This imports ``/path/to/import`` into `lib`. It skips the first
album and imports thesecond one with metadata from the tags. For the
album and imports the second one with metadata from the tags. For the
remaining albums, the metadata from the autotagger will be applied.
"""

View file

@ -456,16 +456,6 @@ lyrics_pages = [
LyricsPage.make(
"https://www.musica.com/letras.asp?letra=59862",
"""
Lady Madonna, children at your feet
Wonder how you manage to make ends meet
Who finds the money when you pay the rent?
Did you think that money was heaven sent?
Friday night arrives without a suitcase
Sunday morning creeping like a nun
Monday's child has learned to tie his bootlace
See how they run
Lady Madonna, baby at your breast
Wonders how you manage to feed the rest

View file

@ -57,7 +57,7 @@ class ImportAddedTest(PluginMixin, ImportTestCase):
os.path.getmtime(mfile.path) for mfile in self.import_media
)
self.matcher = AutotagStub().install()
self.matcher.macthin = AutotagStub.GOOD
self.matcher.matching = AutotagStub.IDENT
self.importer = self.setup_importer()
self.importer.add_choice(importer.action.APPLY)

View file

@ -440,7 +440,7 @@ class ImportTest(ImportTestCase):
self.prepare_album_for_import(1)
self.setup_importer()
self.matcher = AutotagStub().install()
self.matcher.macthin = AutotagStub.GOOD
self.matcher.matching = AutotagStub.IDENT
def tearDown(self):
super().tearDown()