Skip to content

Commit 498ea7e

Browse files
committed
Show that album genres are not applied to tracks
1 parent b645698 commit 498ea7e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_autotag.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ def setUp(self):
167167
year=2013,
168168
month=12,
169169
day=18,
170+
genres=["Rock", "Pop"],
170171
)
171172

172173
common_expected = {
@@ -193,6 +194,7 @@ def setUp(self):
193194
"year": 2013,
194195
"month": 12,
195196
"day": 18,
197+
"genres": ["Rock", "Pop"],
196198
}
197199

198200
self.expected_tracks = [
@@ -227,6 +229,7 @@ def setUp(self):
227229
},
228230
]
229231

232+
@pytest.mark.xfail(reason="Album genres are not applied to tracks")
230233
def test_autotag_items(self):
231234
self._apply()
232235

0 commit comments

Comments
 (0)