mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 15:43:58 +01:00
Fix matcher typo (#5589)
Fixes a confusing typo when setting the MusicBrainz matcher in a few tests. It looks like the matcher defaults to `IDENT` so change it to that, since that would have been the value used in the tests with the typo.
This commit is contained in:
commit
b6d24ecc1f
3 changed files with 3 additions and 3 deletions
|
|
@ -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.
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue