mirror of
https://github.com/beetbox/beets.git
synced 2026-03-23 22:02:18 +01:00
Show that album genres are not applied to tracks
This commit is contained in:
parent
cf043df13d
commit
0f7bce1bfe
1 changed files with 3 additions and 0 deletions
|
|
@ -167,6 +167,7 @@ class ApplyTest(BeetsTestCase):
|
|||
year=2013,
|
||||
month=12,
|
||||
day=18,
|
||||
genres=["Rock", "Pop"],
|
||||
)
|
||||
|
||||
common_expected = {
|
||||
|
|
@ -193,6 +194,7 @@ class ApplyTest(BeetsTestCase):
|
|||
"year": 2013,
|
||||
"month": 12,
|
||||
"day": 18,
|
||||
"genres": ["Rock", "Pop"],
|
||||
}
|
||||
|
||||
self.expected_tracks = [
|
||||
|
|
@ -227,6 +229,7 @@ class ApplyTest(BeetsTestCase):
|
|||
},
|
||||
]
|
||||
|
||||
@pytest.mark.xfail(reason="Album genres are not applied to tracks")
|
||||
def test_autotag_items(self):
|
||||
self._apply()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue